4470번 풀이 [Java]

sua·2022년 9월 7일
0

Baekjoon

목록 보기
138/161
post-thumbnail

문제


풀이

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int n = Integer.parseInt(sc.nextLine());
		for (int i = 0; i < n; i++) {
			System.out.println((i + 1) + ". " + sc.nextLine());
		}
		sc.close();
	}
}
profile
가보자고

0개의 댓글