ComputerScience/Coding Test

백준 11718번: 그대로 출력하기

VirtualDever 2022. 11. 12. 01:48
using System;

class Program {
    static void Main(string[] args) {
        while (true) {
            string input = Console.ReadLine();
            if (string.IsNullOrEmpty(input) == true) break;
            Console.WriteLine(input);
        }
    }
}

문제 출처

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

 

11718번: 그대로 출력하기

입력이 주어진다. 입력은 최대 100줄로 이루어져 있고, 알파벳 소문자, 대문자, 공백, 숫자로만 이루어져 있다. 각 줄은 100글자를 넘지 않으며, 빈 줄은 주어지지 않는다. 또, 각 줄은 공백으로 시

www.acmicpc.net

 

'ComputerScience > Coding Test' 카테고리의 다른 글

백준 11382번: 꼬마 정민  (0) 2022.11.12
백준 9086번: 문자열  (0) 2022.11.12
백준 2754번: 학점계산  (0) 2022.11.12
백준 2744번: 대소문자 바꾸기  (0) 2022.11.12
백준 2743번: 단어 길이 재기  (0) 2022.11.12