package if_statement;
public class Test2 {
public static void main(String[] args) {
// if ~ eles 문 연습
// 1. 정수형 변수 visitCount 가 0일 때, "Hello, World!"를 출력하고
// 아니면 "첫 방문이 아니시군요!" 출력
// vistiCount와 상관없이 "Java Programming!"을 출력
int visitCount = 0;
if (visitCount == 0) { // visitCount 가 0 일 때
System.out.println("Hello, World!");
} else { // visitCount 가 0이 아닐 때
System.out.println("첫 방문이 아니시군요!");
}
System.out.println("Java Programming!");
System.out.println("===================================");
// int형 변수 num이 양수이면 "양수!" 출력하고,
// 아니면 "양수 아님!" 를 출력
int num = 0;
if (num >= 0) { // 양수 일 때
System.out.println("양수!");
} else {
System.out.println("양수 아님!");
}
// 문자 ch가 소문자일 때, 대문자로 변환해서 출력
// 소문자가 아닐 때, "소문자가 아님!" 출력
char ch = 'T';
if (ch >= 'a' && ch <= 'z') { // 소문자 일 때
ch -= 32; // 대문자로 변환
// ch = ch - 32; // 에러 발생!
} else { // 소문자가 아닐 때
System.out.println("소문자 아님!");
}
System.out.println("ch = " + ch);
}
}