2019. 2. 27. 19:25
# sample.txt
2
5
5
# Template Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import java.io.FileInputStream; import java.util.Scanner; public class TEST { static int N; static int Answer; public static void main(String[] args) throws Exception { System.setIn(new FileInputStream("C:\\java\\SW\\sample.txt")); Scanner sc = new Scanner(System.in); int T = sc.nextInt(); for (int test_case = 1; test_case <= T; test_case++) { Answer = N = sc.nextInt(); System.out.println("#" + test_case + " " + Answer); } } } | cs |
# Result
#1 5
#2 5
'PS(Problem Solving) > 공통' 카테고리의 다른 글
자바 알고리즘 문제풀때 참고하기 (정리중,,,) (0) | 2019.03.03 |
---|---|
백준 사이트 정리 (0) | 2019.03.01 |
알고리즘 문제 풀이 템플릿 (0) | 2019.02.27 |
알고리즘 학습 관련 자료 모음 (0) | 2019.02.27 |