728x90
SMALL

자바

 

 

import java.util.*;

public class Main{
public static void main(String args[]){
  Scanner sc = new Scanner(System.in);
  int a = sc.nextInt();

    for(int i = 1;i<=a;i++)
    {
        int b = sc.nextInt();
        int c = sc.nextInt();
        System.out.println("Case #" + i + ": " + b + " + " + c + " = " + (b + c));
    }
    sc.close();
}
}

 

 

//////////////////

 

 

C#

 

 

using System;

namespace Baekjoon {
    class Program {
        static void Main(string[] args) {
            int t = int.Parse(Console.ReadLine()); // 개수 t

            for (int i = 1; i <= t; i++)
            {
                string[] s = Console.ReadLine().Split();
                int b = int.Parse(s[0]);
                int c = int.Parse(s[1]);

                Console.WriteLine("Case #" + i + ": " + b + " + " + c + " = " + (b + c));
            }
        }
    }
}

 

728x90

설정

트랙백

댓글