반응형
StringBuilder 개념 알아보러 가기
using System;
using System.Text;
namespace baek2
{
class Program
{
static void Main(string[] args)
{
StringBuilder sb = new StringBuilder();
string input_n = Console.ReadLine();
int n = int.Parse(input_n);
int count = 1;
while(n>0)
{
string input_AB = Console.ReadLine();
string[] AB = input_AB.Split();
int A = int.Parse(AB[0]);
int B = int.Parse(AB[1]);
sb.AppendFormat($"Case #{count}: {A} + {B} = ");
sb.AppendLine((A + B).ToString());
n--;
count++;
}
Console.Write(sb);
}
}
}
반응형
'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글
백준 C# 2439 (0) | 2023.04.09 |
---|---|
백준 C# 2438 (0) | 2023.04.09 |
백준 C# 11021 (0) | 2023.04.09 |
백준 C# 15552 (0) | 2023.04.09 |
백준 C# 25314 (0) | 2023.04.08 |
댓글