문제
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
입력
첫째 줄에 테스트 케이스의 개수 T가 주어진다.
각 테스트 케이스는 한 줄로 이루어져 있으며, 각 줄에 A와 B가 주어진다. (0 < A, B < 10)
출력
각 테스트 케이스마다 "Case #x: "를 출력한 다음, A+B를 출력한다. 테스트 케이스 번호는 1부터 시작한다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
using System.Text;
class Program
{
static void Main(string[] args)
{
int s = int.Parse(Console.ReadLine());
StringBuilder ab = new StringBuilder();
for(int i = 0; i < s; i++)
{
string temp = Console.ReadLine();
string[] tempA = temp.Split();
int a = int.Parse(tempA[0]);
int b = int.Parse(tempA[1]);
ab.Append("Case #" + (i+1) + ": " + (a+b) + "\n");
}
Console.Write(ab);
}
}
|
cs |
https://www.acmicpc.net/problem/11021
'void Algorithm' 카테고리의 다른 글
백준 문제 번호 : 2439 - 별 찍기 -2 (0) | 2019.09.24 |
---|---|
백준 문제 번호 : 2438 - 별 찍기 - 1 (0) | 2019.09.24 |
백준 문제 번호 : 2742 - 기찍 N (0) | 2019.09.24 |
백준 문제 번호 : 2741 - N 찍기 (0) | 2019.09.24 |
백준 문제 번호 : 15552 - 빠른 A+B (0) | 2019.09.24 |