docs.oracle.com/en/java/javase/15/docs/api/java.base/java/util/Scanner.html#hasNextInt()
java.util.Scanner.hasNextInt()
public boolean hasNextInt()
๋ฐํ๊ฐ :
Scanner ๊ฐ์ฒด์ ์ ๋ ฅ๊ฐ์ด int๊ฐ์ผ ๋๋ง true๋ฅผ ๋ฐํ
Scanner.hasNextInt()
์์
import java.util.Scanner;
public class HasNextIntEx {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while(sc.hasNextInt()) {
System.out.print("์
๋ ฅ๊ฐ์ด ์กด์ฌํฉ๋๋ค. ํฉ : ");
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(a+b);
}
}
}
์ถ๋ ฅ
3 34 ์ ๋ ฅ๊ฐ์ด ์กด์ฌํฉ๋๋ค. ํฉ : 37 234 1 ์ ๋ ฅ๊ฐ์ด ์กด์ฌํฉ๋๋ค. ํฉ : 235 |
=> ์ ๋ ฅ๊ฐ์ด ๋ค์ด์ฌ ๋ ๊น์ง while๋ฌธ ๋ด๋ถ๊ฐ ์คํ๋์ง ์๋ค๊ฐ
์ ๋ ฅ๊ฐ์ด ๋ค์ด์ sc.hasNextInt()๊ฐ true๋ฅผ ๋ฆฌํดํ ์ดํ์ while๋ฌธ ๋ด๋ถ๊ฐ ์คํ๋จ
์ฌ์ฉ ์ : nanarin.tistory.com/28