急救!
我用的是j2sdk1.4.2 在这里我可不可以像C语言那样用for循环语句向数组中输入数据,再用for循环给输出?如:public class bijiao{
public static void main(String args[]) throws IOException{
int a[];
a[10]=new int[10];
System.out.println("Please input the numbers:");
for(int i=0;i<10;i++)
int a[i]=(int)System.in.read();
System.in.skip(2);
for(int i=0;i<10;i++)
System.out.print(a[i]+" ");
}
}
这是我试着写的,但是有错误,该怎么样修改呢?