New Programming/Java 2020. 5. 31.
자바 숫자 3개를 입력받아서 가장 큰 수부터 나열!
안녕하세요 오늘은 자바 숫자 3개를 입력받아서 가장 큰 수부터 나열해보겠습니다. import java.util.Scanner; public class Ex { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("숫자를 입력하세요."); String high = null; int one = sc.nextInt(); // 첫번째 숫자 int two = sc.nextInt(); // 두번째 숫자 int three = sc.nextInt(); // 세번째 숫자 if(one > two && one > three && two > three) { high = one+">"+two+">"+thre..