문제를 푸는 방법은 기본적으로 args 입력 값들이 들어오면, 콘솔출력문으로 정답을 제출하는 방식이다.
args 입력값 확인은 안된다.
import 필요한 클래스
public class Main {
public static void main(String[] args) {
System.out.println(정답);
//출력하라는 문제는 System.out.println( ) 으로 정답 출력하면 제출성공
}
}
import java.util.*;
// 자바.유틸 클래스 사용
public class Test{
Scanner sc = new Scanner(System.in);
// System.in 인풋 스트림을 받아서 Scanner 객체로 생성
sc.next();
// string 반환
sc.nextBoolean();
// boolean 반환
sc.nextByte();
// byte 반환
sc.nextInt();
// int 반환
sc.nextDouble();
// double 반환
sc.nextFloat();
// float 반환
}