728x90
문제:
두 정수 A와 B를 입력 받은 다음, A+B를 출력하는 프로그램을 작성하시오.
나의 코드:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(a+b);
}
}
https://www.acmicpc.net/problem/1000
728x90
'ETC > 📋 Coding Tests' 카테고리의 다른 글
[알고리즘] 소수 구하기 (0) | 2020.08.22 |
---|---|
[알고리즘] 369 게임 (2) | 2020.08.21 |
[알고리즘] 구구단 출력 (0) | 2020.08.21 |
[백준 BAEKJOON] 10869번 - 사칙연산 (JAVA) (0) | 2020.08.15 |
[백준 BAEKJOON] 2557번 - Hello World! (JAVA) (0) | 2020.08.14 |