1. 기본 알고리즘
1-1 세 값의 최대값 찾기 (하라! 연습 1-1) // 3개의 정수값을 입력하고 최댓값을 구하여 출력 import java.util.Scanner; class Max3 { public static void main(String() args) { Scanner sc = new Scanner(System.in); System.out.println(“세 정수의 최댓값을 구합니다.”); System.out.print(“a의 값: “); int a = sc.nextInt(); System.out.print(“b의 값: “); int b = sc.nextInt(); System.out.print(“c의 값: “); int c = … Read more