글
백준 11022번 A + B - 8(JAVA, C#)
자바
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));
}
}
}
}
'백준 프로그래밍' 카테고리의 다른 글
백준 2439번 별 찍기 - 2(JAVA, C#) (0) | 2023.02.15 |
---|---|
백준 별 찍기 - 1(JAVA, C#) (0) | 2023.02.14 |
백준 11021번 A+B-7(JAVA, C#) (0) | 2023.02.14 |
백준 15552번 빠른 A+B(Java, C#) (0) | 2023.02.14 |
백준 25304번 영수증(JAVA, C#) (0) | 2023.02.14 |