import java.util.Scanner;
public class Ex01_If {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("์ ์ ์
๋ ฅ : ");
int num = sc.nextInt();
// ์
๋ ฅ ๋ฐ์ ๊ฐ์ด ํ์ ์ธ์ง, ์ง์์ธ์ง ์กฐ๊ฑด๋ฌธ์ผ๋ก ํ๋จํ์์ค.
// if ์กฐ๊ฑด๋ฌธ
// * if ( ์กฐ๊ฑด์ ) { }
// ํ์ : 1, 3, 5, 7, ...
// ์ง์ : 2, 4, 6, 8, ...
if( num % 2 == 1 )
System.out.println("ํ์ ์
๋๋ค.");
if( num % 2 == 0 ) {
System.out.println("์ง์ ์
๋๋ค.");
}
sc.close();
}
}
Java
๋ณต์ฌ