Home [Java] 백준 1000번 : A+B
Post
Cancel

[Java] 백준 1000번 : A+B

Problem

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

Solution

1
2
3
4
5
6
7
8
9
10
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int a = scan.nextInt();
		int b = scan.nextInt();
		System.out.println(a+b);
	}
}

Memo

Scanner 클래스를 통해 사용자로부터 입력을 받는다. Python에서는 입력(1 2)받은 후 split함수를 사용하여 두개의 변수로 나누는 작업이 필요했지만 Java에서는 nextInt를 사용하면 변수 각각을 따로 저장할 수 있다.

This post is licensed under CC BY 4.0 by the author.

[Python] 백준 10430번 : 나머지

[Python][Java] 백준 10998번 : AxB