백준 10951 : A+B - 4

C# 2020. 12. 6. 23:12

두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.

입력은 여러 개의 테스트 케이스로 이루어져 있다.

각 테스트 케이스는 한 줄로 이루어져 있으며, 각 줄에 A와 B가 주어진다. (0 < A, B < 10)
각 테스트 케이스마다 A+B를 출력한다.

:: 성공

: 학습

>> string.IsNullOrEmpty(검사할 문자열)

: 개선점 : Readline 외의 다른 방법?

using System;
using System.Collections.Generic;
using System.IO;

namespace while01
{
    class Program
    {
        static void Main(string[] args)
        {
            // :: Loop
            while(true)
            {
                // :: Input
                string inputRaw = Console.ReadLine();
                // :: if Input is "" : Break;
                if (string.IsNullOrEmpty(inputRaw))
                    break;

                // :: Split and Parse
                string[] input = inputRaw.Split(' ');
                int a = Int32.Parse(input[0]);
                int b = Int32.Parse(input[1]);

                // :: Print
                Console.WriteLine("{0}", a + b);
            }
        }
    }
}

'C#' 카테고리의 다른 글

백준 1110 : 더하기 사이클  (0) 2020.12.08
백준 9498 : 시험 성적  (0) 2020.12.07
백준 10952 : A+B - 5  (0) 2020.12.05
백준 10871 : X보다 작은 수  (0) 2020.12.04
백준 2439 : 별 찍기 - 2  (0) 2020.12.03
블로그 이미지

RIsN

,