728x90
public class Ex02 {
public static void main(String[] args){
int visitCount = 5;
if(visitCount < 1) {
System.out.print("첫방문");
}else{
System.out.println("재방문");
}
}
}
728x90
'JAVA > 예제' 카테고리의 다른 글
[JAVA] ch04-04. 삼항 연산 (0) | 2017.08.21 |
---|---|
[JAVA] ch04-03. IF ~ ELSE IF ~ ELSE 문 (0) | 2017.08.21 |
[JAVA] ch04-01. IF문 (0) | 2017.08.21 |
[JAVA] ch03-27. 삼항 연산자 (0) | 2017.08.21 |
[JAVA] ch03-26. 논리 연산자 (0) | 2017.08.21 |
댓글