109521 [백준][JAVA/자바] 10952번: A+B - 5 브론즈 5 10952번: A+B - 5 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net (1) while 문 조건으로 .hasNextInt() 개념 사용 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner s = new Scanner(System.in); while (s.hasNextInt()) { int a = s.nextInt(); int b = s.nextInt(); if (a == 0 && b == 0) { break; } else { System.out.println(a + b); } } } } (2) while 문 조건으.. 2022. 12. 9. 이전 1 다음