1.네값의 최댓 값을 구하는 메서드 작성 import java.util.Scanner; public class Max4Method { static int max4(int a,int b,int c, int d) { int max = a; if (max < b) { max = b; } if (max < c) { max = c; } if (max < d) { max = d; } return max; } public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("세개의 정수를 입력하세요"); System.out.print("a의 값 :"); int a = sc.nextInt(); System.ou..