当前位置: 技术问答>java相关
菜鸟偶个问题 希望各位赐教
来源: 互联网 发布时间:2015-03-21
本文导语: 从键盘读入的数据 怎么把他存到INT 数组里面? | String str=""; try{ char c; while((c=(char)System.in.read())!='n') str=str+String.valueOf(c); System.out.println(str); } catch(IOException ioe) { ioe....
从键盘读入的数据 怎么把他存到INT 数组里面?
|
String str="";
try{
char c;
while((c=(char)System.in.read())!='n')
str=str+String.valueOf(c);
System.out.println(str);
}
catch(IOException ioe)
{
ioe.printStackTrace();
}
try{
char c;
while((c=(char)System.in.read())!='n')
str=str+String.valueOf(c);
System.out.println(str);
}
catch(IOException ioe)
{
ioe.printStackTrace();
}