λ°μν
import java.util.Scanner;
public class Main {
// 10951 A+B - 4
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while (sc.hasNextInt()) {
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(a + b);
}
}
}
μλ while(true)λ‘ ν΄μ λ΅μ μ μΆνλλ λ°νμμλ¬κ° λλκ΅°μ.
Scanner classμ hasNextInt()ν¨μλ₯Ό μ¬μ©νλ©΄ λλ κ±°μμ΄μ κ³ μ³ λλλ λ§μ·μ΅λλ€.
λ°μν
'πΈ Algorithm > πΈ λ°±μ€ BaekJoon' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
[λ°±μ€][java][10871][Xλ³΄λ€ μμ μ] (0) | 2023.10.15 |
---|---|
[λ°±μ€][java][10807][κ°μ μΈκΈ°] (0) | 2023.10.15 |
[λ°±μ€][java][10952][A+B - 5] (0) | 2023.10.09 |
[λ°±μ€][java][2439][λ³ μ°κΈ° - 2] (0) | 2023.10.09 |
[λ°±μ€][java][2438][λ³ μ°κΈ° - 1] (0) | 2023.10.09 |