[백준]C# 코딩 : 15552번(빠른 A + B)

728x90

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

 

15552번: 빠른 A+B

첫 줄에 테스트케이스의 개수 T가 주어진다. T는 최대 1,000,000이다. 다음 T줄에는 각각 두 정수 A와 B가 주어진다. A와 B는 1 이상, 1,000 이하이다.

www.acmicpc.net

https://docs.microsoft.com/ko-kr/dotnet/api/system.text.stringbuilder?view=netcore-3.1 

 

StringBuilder 클래스 (System.Text)

변경할 수 있는 문자열을 나타냅니다.Represents a mutable string of characters. 이 클래스는 상속될 수 없습니다.This class cannot be inherited.

docs.microsoft.com

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[] num = Console.ReadLine().Split();
                sb.Append(int.Parse(num[0]) + int.Parse(num[1]) + "\n");
            }
            Console.WriteLine(sb.ToString());
        }
    }
}
728x90