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