C#/알고리즘

3. 10952번 A+B-5

dev_sr 2020. 4. 7. 23:20

1. A 공백 B (A B) 를 입력 받아서

2. A값과 B값을 더하고 값을 출력하기

3. 0 공백 0 (0 0) 을 입력 받으면 종료

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace _10952
{
    class Program
    {
        static void Main(string[] args)
        {
            while (true)
            {
                string input = Console.ReadLine();
                string[] nums = input.Split(' ');
 
                int a = int.Parse(nums[0]);
                int b = int.Parse(nums[1]);
 
                if (a == 0 && b == 0)
                {
                    break;
                }
 
                Console.WriteLine(a + b);
 
 
            }
        }
    }
}
 
 

 

결과 값

 

 

 

출처

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

'C# > 알고리즘' 카테고리의 다른 글

6. 2884번 알람시계  (0) 2020.04.26
5. 14681번 사분면 고르기  (0) 2020.04.26
4. 2753번 윤년  (0) 2020.04.26
2. 9498번 시험 성적  (0) 2020.04.07
1. 1330번 두 수 비교하기  (0) 2020.04.07