[백준] 10951번: A+B(4) - JAVA
·
알고리즘
[작성일: 2023. 08. 22] https://www.acmicpc.net/problem/10951  풀이import java.io.*;import java.util.Scanner;public class Main { public static void main(String[] args) throws IOException { Scanner sc = new Scanner(System.in); // EOF 방식으로 입력받기: hasNext 메소드 사용 // 입력이 있으면 true, 없으면 false while (sc.hasNext()) { int a = sc.nextInt(); int b = sc.n..