본문 바로가기
알고리즘/baekjoon

[BaekJoon 알고리즘] 백준 1000번 자바

by 두리두리안 2021. 4. 25.

1) 문제 번호 : 1000번 

 

2) 문제 출처

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

 

1000번: A+B

두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

3) 문제 

두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.

 

4) 출력

첫째 줄에 A+B를 출력한다.

 

제출 코드 

import java.util.Scanner;
public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a;
		int b;

		a = sc.nextInt();
    	b = sc.nextInt();
				
        System.out.println(a+b);
	}

}

원래 코드

import java.util.Scanner;
public class No_1000 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a;
		int b;
		
		System.out.println("A 정수를 입력 해주세요");
		a = sc.nextInt();
		System.out.println("B 정수를 입력 해주세요");
		b = sc.nextInt();
		
		System.out.println("합산 ");
		System.out.println(a+b);
	}

}