두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
입력은 여러 개의 테스트 케이스로 이루어져 있다.
각 테스트 케이스는 한 줄로 이루어져 있으며, 각 줄에 A와 B가 주어진다. (0 < A, B < 10)
입력의 마지막에는 0 두 개가 들어온다.
각 테스트 케이스마다 A+B를 출력한다.
:: 성공
: 학습
>> While(true) 쪽이 쓰기 편할 때가 있다.
: 개선점 : 없음
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace while01
{
class Program
{
static void Main(string[] args)
{
// :: List Result
List<int> result = new List<int>();
// :: Loop
while(true)
{
// :: Input
string[] input = Console.ReadLine().Split(' ');
// :: Exit
if (input[0] == "0" && input[1] == "0")
break;
// :: Parse
int a = Int32.Parse(input[0]);
int b = Int32.Parse(input[1]);
result.Add(a + b);
}
// :: Print
Console.WriteLine(string.Join("\n", result));
}
}
}
'C#' 카테고리의 다른 글
백준 9498 : 시험 성적 (0) | 2020.12.07 |
---|---|
백준 10951 : A+B - 4 (0) | 2020.12.06 |
백준 10871 : X보다 작은 수 (0) | 2020.12.04 |
백준 2439 : 별 찍기 - 2 (0) | 2020.12.03 |
백준 11021 : A+B - 7 (0) | 2020.11.30 |