728x90
https://www.acmicpc.net/problem/11021
using System;
using System.Text;
namespace backjoon
{
class Program
{
static void Main(string[] args)
{
StringBuilder number = new StringBuilder();
int t = int.Parse(Console.ReadLine());
int[] num = new int[t];
for(int i = 0; i < t; i++)
{
string[] s = Console.ReadLine().Split();
num[i] = int.Parse(s[0]) + int.Parse(s[1]);
number.AppendLine($"Case #{i + 1}: " + num[i].ToString());
}
Console.WriteLine(number.ToString());
}
}
}
using System;
using System.Text;
namespace backjoon
{
class Program
{
static void Main(string[] args)
{
StringBuilder sb = new StringBuilder();
int t = int.Parse(Console.ReadLine());
for(int i = 0; i < t; i++)
{
string[] s = Console.ReadLine().Split();
int a = int.Parse(s[0]);
int b = int.Parse(s[1]);
sb.Append("Case #" + (i + 1) + ": " + (a + b) + "\n");
}
Console.WriteLine(sb);
}
}
}
728x90
'게임 프로그래밍 > C#' 카테고리의 다른 글
[백준]C# 코딩 : 2438번(별 찍기 - 1) (0) | 2021.08.28 |
---|---|
[백준]C# 코딩 : 11022번(A + B - 8) (0) | 2021.08.28 |
[백준]C# 코딩 : 2742번(기찍 N) (0) | 2021.08.24 |
[백준]C# 코딩 : 2741번(N 찍기) (0) | 2021.08.24 |
[백준]C# 코딩 : 15552번(빠른 A + B) (0) | 2021.08.24 |