두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
import java.util.Scanner;
public class Main {
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);
// 문자열과 조합이 아닌 경우 수식 자유롭게 작성
// sc에 들어오는 값이 정수일 때만 true
}
}
}
hasNextInt()
: Scanner 객체의 return 값이 Int일 경우에만 true 값 반환.hasNext()
: 다음에 값이 있는지 확인하는 함수