글
백준 10950번 A+B-3(JAVA, C#)
자바
import java.util.*;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int arr[] = new int[a];
for(int i = 1;i<=a;i++)
{
int b = sc.nextInt();
int c = sc.nextInt();
System.out.println(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 = 0; i < t; i++)
{
string[] s = Console.ReadLine().Split();
int b = int.Parse(s[0]);
int c = int.Parse(s[1]);
Console.WriteLine(b + c);
}
}
}
}
'백준 프로그래밍' 카테고리의 다른 글
백준 25304번 영수증(JAVA, C#) (0) | 2023.02.14 |
---|---|
백준 8393번 합(JAVA, C#) (0) | 2023.02.14 |
백준 2739번 구구단(JAVA, C#) (0) | 2023.02.14 |
백준 2480번 주사위 세 개(JAVA, C#) (0) | 2023.02.14 |
백준 2525번 오븐 시계(JAVA, C#) (0) | 2023.02.12 |