반응형

 

안녕들 하시죠 !

 

오늘은 백준 1000번 문제를 풀어보겠습니다.

 

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

 

문제

 

 

 

코드

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import java.util.Scanner;
 
public class Main {
    public static void main(String[] args) {
        // TODO Auto-generated method stub
    
        Scanner sc = new Scanner(System.in); // sc객체 생성  
        
        int A = sc.nextInt(); // A에 첫 번째 정수 저장
        int B = sc.nextInt(); // B에 두 번째 정수 저장
        sc.close(); // sc 객체 닫기
        
        System.out.println(A + B); // 두 정수를 더하여 출력
 
    }
}
cs

 

출력

 

 

성공~

+ Recent posts