由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Software版 - 一个java的小问题
相关主题
audio/sound generator推荐一下:尤达笔记
[转载] 一点小经验100个包子求助,word文档corrupted,如何恢复?
Re: matlab 怎样把text matrix 读进matrix?EBCDIC 格式文件怎么转成ASCII格式?谢谢 (转载)
请教把access编码由unicode换成ascii的方法 (转载)Re: 装了ce-star 2.2以后中文还是只有空格,为什么?
刚买不久的机器,可以显示中文,但是收藏夹里有些中文网站名显示不了Re: LATEX 安装求助!!!
how to print or save pages from Google Book Preview?WinXP下使用miktex+emacs+yap编辑latex文档,不能预览dvi文件 (转载)
What's the problem with 'ascii' codec?请教输入数据的软件 (转载)
【求教】Text Indexer for Large Volume of ASCII files【先谢】 (转载)转换成XML,我的空格键和tab怎么都丢了? (转载)
相关话题的讨论汇总
话题: floor话题: roomnum话题: scanner话题: new
进入Software版参与讨论
1 (共1页)
b******g
发帖数: 669
1
PrintStream diskWriter = new PrintStream("H");
diskWriter.print("1 12 1 3 11 4 32 23");
Scanner diskScanner = new Scanner( new File("H"));
int floor, roomNum;
for(floor=1;floor<=2;floor++){
out.print("Floor ");
out.print(floor);
out.print(": ");
for(roomNum=1;roomNum<=2;roomNum++){

out.print(diskScanner.nextInt() +' ');
}
out.println();
}
// TODO Auto-generated method stub
这段写完后,读出的数据和写进去的数据完全不一样。
m*****j
发帖数: 499
2
print那句里面应该用双引号而不是单引号

【在 b******g 的大作中提到】
: PrintStream diskWriter = new PrintStream("H");
: diskWriter.print("1 12 1 3 11 4 32 23");
: Scanner diskScanner = new Scanner( new File("H"));
: int floor, roomNum;
: for(floor=1;floor<=2;floor++){
: out.print("Floor ");
: out.print(floor);
: out.print(": ");
: for(roomNum=1;roomNum<=2;roomNum++){
:

b******g
发帖数: 669
3
faint!!! 能解释下么,相当于每个数字读进去加了空格的ASCII值? 加起来也不对啊,相当于加了
32,为么是加了0的ASCII值呢?

【在 m*****j 的大作中提到】
: print那句里面应该用双引号而不是单引号
m*****j
发帖数: 499
4
你的输出是什么?我这里输出
3344
3335
就是加的空格的ascii值。1+32;12+32;etc

啊,相当于加了

【在 b******g 的大作中提到】
: faint!!! 能解释下么,相当于每个数字读进去加了空格的ASCII值? 加起来也不对啊,相当于加了
: 32,为么是加了0的ASCII值呢?

b******g
发帖数: 669
5
谢谢,昨天看ASCII表看歪了,谢谢~~写CODE就是要细心啊!

【在 m*****j 的大作中提到】
: 你的输出是什么?我这里输出
: 3344
: 3335
: 就是加的空格的ascii值。1+32;12+32;etc
:
: 啊,相当于加了

1 (共1页)
进入Software版参与讨论
相关主题
转换成XML,我的空格键和tab怎么都丢了? (转载)刚买不久的机器,可以显示中文,但是收藏夹里有些中文网站名显示不了
有没有这个功能的文本编辑器?how to print or save pages from Google Book Preview?
Re: [转载] 请教如何把底片处理成照片(最好用PhotoShop)?What's the problem with 'ascii' codec?
Re: 请问如何给PDF文件减肥?【求教】Text Indexer for Large Volume of ASCII files【先谢】 (转载)
audio/sound generator推荐一下:尤达笔记
[转载] 一点小经验100个包子求助,word文档corrupted,如何恢复?
Re: matlab 怎样把text matrix 读进matrix?EBCDIC 格式文件怎么转成ASCII格式?谢谢 (转载)
请教把access编码由unicode换成ascii的方法 (转载)Re: 装了ce-star 2.2以后中文还是只有空格,为什么?
相关话题的讨论汇总
话题: floor话题: roomnum话题: scanner话题: new