java键盘输入数字赋值给数组
importjava.io.*;publicclassax{publicstaticvoidmain(Stringargs[])throwsIOException{int...
import java.io.*;
public class ax{
public static void main(String args[]) throws IOException{
int i,max=0;
int a[]=new int[5];
for(i=0;i<=a.length-1;i++)
{a=System.in.read();
System.in.skip(2);}
for(i=0;i<=a.length-1;i++)
System.out.println(+a);
}
}
这代码是输入5个数到数组里,然后将它输出.
我输入1,2,3,4,5它输出的结果怎么是49,50,51,52,53 展开
public class ax{
public static void main(String args[]) throws IOException{
int i,max=0;
int a[]=new int[5];
for(i=0;i<=a.length-1;i++)
{a=System.in.read();
System.in.skip(2);}
for(i=0;i<=a.length-1;i++)
System.out.println(+a);
}
}
这代码是输入5个数到数组里,然后将它输出.
我输入1,2,3,4,5它输出的结果怎么是49,50,51,52,53 展开
2个回答
展开全部
楼上的回答正确,所以应该做如下的修改:
可能不是最好的方法,有好的欢迎往上发:
import java.io.*;
public class ax
{
public static void main(String args[]) throws IOException
{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int i,max=0;
int a[]=new int[5];
System.out.println("Input datas,use enter to seperate them:");
for(i=0;i<=a.length-1;i++)
{
a[i]= Integer.parseInt(br.readLine());
}
for(i=0;i<=a.length-1;i++)
System.out.println(a[i]);
}
}
可能不是最好的方法,有好的欢迎往上发:
import java.io.*;
public class ax
{
public static void main(String args[]) throws IOException
{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int i,max=0;
int a[]=new int[5];
System.out.println("Input datas,use enter to seperate them:");
for(i=0;i<=a.length-1;i++)
{
a[i]= Integer.parseInt(br.readLine());
}
for(i=0;i<=a.length-1;i++)
System.out.println(a[i]);
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询