import java.io.*;
public class Test{
public static void main(String args[]) throws IOException{
int a[]=new int[10];
int b;
for(int i=0;i<a.length;i++){//从键盘上输入数到数组
BufferedReader bbb = new BufferedReader(new InputStreamReader(System.in));
System.out.println("请输入10个整数:");
a[i]=Integer.parseInt(bbb.readLine());
}
for(int i=0;i<a.length-1;i++)//从小到大排序
for(int j=i+1;j<a.length;j++)
if(a[i]>a[j]){
b=a[i];
a[i]=a[j];
a[j]=b;
}
for(int i=0;i<a.length;i++)//打印
System.out.println(a[i]+" ");
}
}
我输入10个数之后怎么出现这样的错误::请输入10个整数:
9 8 7 3 6 5 1 2 4 0
java.lang.NumberFormatException: For input string: "9 8 7 3 6 5 1 2 4 0"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
at java.lang.Integer.parseInt(Integer.java:477)
at java.lang.Integer.parseInt(Integer.java:518)
at Test.main(Test.java:10)
Exception in thread "main"
处理已完成。
我用Jcreator编写的