Small Grey Outline Pointer Baekjoon java / A+B
본문 바로가기
Dev./Algorithm Prac

Baekjoon java / A+B

by sso. 2022. 4. 20.
import java.util.Scanner;

public class Main { //백준에 제출할 때는 반드시 Main으로 선언하기

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		
		Scanner in = new Scanner(System.in);
		int A = in.nextInt();
		int B = in.nextInt();	
		System.out.println(A+B);
		
		in.close();

	}

}

5
7
12

 

 

F10을 눌러 아래쪽에 콘솔창이 뜨면

숫자를 하나씩 입력한다

마지막 줄에 A+B의 값이 반환되어 출력된다

728x90

댓글