import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int m = sc.nextInt(); // 추가
for(int i = 0; i < n; i++) {
for(int j = 0; j <= i; j++) {
System.out.print("*");
}
System.out.println();
}
}
}
더이상 Element가 없는데도 불러오려고 할 때 발생
Scanner가 읽어올 스트림이 없는데도 읽으려고 해서 발생한 오류
Stream을 닫아주는(close) 곳이 있기 때문에 발생
→ 닫아주게 되면, System.in이 종료돼버린다.
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
for(int i = 0; i < n; i++) {
for(int j = 0; j <= i; j++) {
System.out.print("*");
}
System.out.println();
}
}
}
참고: [오류] Exception in thread "main" java.util.NoSuchElementException