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