java2 [์ด์์ Java๋ ์ฒ์์ด์ง!_2019 Ver] 4์ฅ Lab ๋์ ๋ฌธ์ ํ์ด # 4์ฅ Lab ๋์ ๋ฌธ์ ํ์ด 155p_Lab ๋์ ๋ฌธ์ ) package chap04; import java.util.*; public class Lab_Advanced_155p { public static void main(String[] args) { int STUDENTS = 1; int total = 0; Scanner scan = new Scanner(System.in); System.out.println("ํ์ ์: "); STUDENTS = scan.nextInt(); int[] scores = new int[STUDENTS]; for (int i = 0; i < scores.length; i++) { System.out.print("์ฑ์ ์ ์ ๋ ฅํ์์ค: "); scores[i] = scan.n.. 2023. 6. 25. [์ด์์ Java๋ ์ฒ์์ด์ง!_2019 Ver] 3์ฅ Lab ๋์ ๋ฌธ์ ํ์ด # 3์ฅ Lab ๋์ ๋ฌธ์ ํ์ด 107p_๋์ ๋ฌธ์ ) package chap03; import java.util.Scanner; public class Advanced_107p { public static void main(String[] args) { // TODO Auto-generated method stub int x, y, min; Scanner input = new Scanner(System.in); System.out.print("์ฒซ ๋ฒ์งธ ์ ์: "); x = input.nextInt(); System.out.print("๋ ๋ฒ์งธ ์ ์: "); y = input.nextInt(); if (x < y) { min = x; } else { min = y; } System.out.println("๋ .. 2023. 4. 17. ์ด์ 1 ๋ค์