Search

if

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
๋ณต์‚ฌ