개인공부

조건문

리승우 2022. 7. 13. 23:52

 

if(true) {

System.out.println("good");

} else {

System.out.println("no good");

}

 

출력값

good