1. 알고리즘 1) 알고리즘이란? 1. 문제를 해결하기 위한 것 2. 명확하게 정의되고 순서가 있는 유한 개의 규칙으로 이루어진 집합 2) 순차적 구조와 선택 구조 import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); System.out.print("a의 값: "); int a = sc.nextInt(); System.out.print("b의 값: "); int b = sc.nextInt(); System.out.print("c의 값: "); int c = sc.nextInt(); int max = a; if(b > max) max = b;..