[백준]10951번: A+B - 4

이진솔·2024년 3월 15일
0
post-thumbnail

# 문제

두 정수 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(): 다음에 값이 있는지 확인하는 함수
  1. 반복문이 언제 끝나야 하는지 조건 생각하기.
profile
성장하기

0개의 댓글