大家好,我在尝试将第一行放入 10 个整数的数组时遇到问题。这是我到目前为止所拥有的
public class KnapEncrypt {
public static void main(String[] args) throws FileNotFoundException {
File file = new File("Testinput.txt");
Scanner sc = new Scanner(file);
while(sc.hasNext()){
int line = sc.nextInt();
System.out.println(line);
}
}
}
这是文件:
191 691 573 337 365 730 651 493 177 354
1000011100
1101000001
0000100010
0100000000
1028
2426
2766
1129
基本上我想要的是将第一行放入一个包含 10 个整数但不是其余数字的数组中