자바


1. 작성 양식


import 필요한 클래스

public class Main { 
    public static void main(String[] args) { 

		System.out.println(정답);
		//출력하라는 문제는 System.out.println( ) 으로 정답 출력하면 제출성공
    } 
}

2. 입력 I/O 관련 유틸


2.1 Scanner 클래스


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 반환
}