Java/chapter1

ch03 MainTest6

낭구리 2021. 8. 19. 17:19
package ch03;

import java.util.Scanner;

public class MainTest6 {
	public static void main(String[] args) {
		
		//삼항 연산자
		//조건식 ? 결과1 : 결과2
		
		int num1 = (5 > 3 )? 10: 20;
		System.out.println(num1);
		
		int num2 = (5 < 3 )? 10: 20;
		System.out.println(num2);
		
		//JDK가 만들어둔 도구를 이용해 봅시다.
		int max;
		System.out.println("입력 받은 두 수 중 큰 수를 출력하세요!");
		
		Scanner sc = new Scanner(System.in);
		System.out.println("입력 1 :");
		int x = sc.nextInt();
		System.out.println("입력 2 :");
		int y = sc.nextInt();
		
		max = (x > y) ? x : y;
		System.out.println("큰 숫자는 : " + max + "입니다.");
		
		
		
		
		
	}//main

}//class

'Java > chapter1' 카테고리의 다른 글

ch04 IfMainTest  (0) 2021.08.20
ch03 MainTest7  (0) 2021.08.19
ch03 MainTest5  (0) 2021.08.19
ch03 MainTest4  (0) 2021.08.19
ch03 MainTest3  (0) 2021.08.19