import java.util.Scanner;
public class shortpath {
String n1;
String a[];
int num[];
shortpath(){
Scanner sc1=new Scanner(System.in);
n1=sc1.nextLine(); //문자열을 받음
a=n1.split(" "); //공백 기준으로 나눠서 배열에 넣음
int num[]=new int [a.length]; //int형으로 변환을 위한 배열 생성
for(int j=0;j
num[j]=Integer.parseInt(a[j]); //형변환 후 입력
}
void print(){
for(int i=0;i
System.out.print(num[i]);
}
public static void main(String [] args){
shortpath a=new shortpath();
a.print();
}
}
무식해서 nullpointerException 오류 가 나는 이유를 모르겟습니다...