공부하기/백준

[Java] 백준 풀기 26574 - Copier

XEV 2023. 3. 21. 23:08

자바 백준 26574번

브론즈 5

https://www.acmicpc.net/problem/26574

 

26574번: Copier

Your copier broke down last week, and you need to copy a list of numbers for a class project due tomorrow! Luckily, you can use your computer to copy the numbers for you. Given a list of numbers, each on their own line, print out the number, a space, and t

www.acmicpc.net

 

 

 

 

 

문제 보기

분류: 구현

 

 

 

 

 

문제 풀기

테스트 개수만큼 반복문을 실행하고, 주어진 숫자를 출력 조건에 맞게 내보낸다.

 

 

 

 

 

코드 보기

import java.util.Scanner;

public class Main {
    public static void main(String args[]) {
        
        Scanner sc = new Scanner(System.in);
        
        int testCase = sc.nextInt();
        for (int i = 0; i < testCase; i++) {
            int origNum = sc.nextInt();
            System.out.println(origNum + " " + origNum);
        }
        
    }
}