public class Solution {
public static void main(String[] args) throws IOException
{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int num = 6;
int[] sticks = new int[num];
for(int i=0;i<num;i++)
{
sticks[i] = Integer.parseInt(br.readLine());
}
for(int i=0;i<num;i++)
{
System.out.println(sticks[i]);
}
}}
线程“main”中的异常java.lang.NumberFormatException:对于输入字符串:“4 5 8 6 4 2”
答案 0 :(得分:4)
字符串"4 5 8 6 4 2"
无法解析为数字。请尝试split
,或在单独的行中输入每个数字。