标题:求助:帮帮忙,看看哪里出错了!~
只看楼主
informed
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2009-2-6
 问题点数:0 回复次数:4 
求助:帮帮忙,看看哪里出错了!~
import *;
public class Test1 {
    public static void main(String[] args)throws Exception {
    try{
        byte buf[] = new byte[50];
        System.out.print("input:");    //输入小于100整数
        int count = System.in.read(buf);
        String strBuf = new String(buf,0,count);
        System.out.println(strBuf);
        int n=Integer.parseInt(strBuf);
        System.out.println("n:"+n);   //这一行,总是不能显示出来,怎么回事啊?
        int m = 100/n;
        System.out.println(m);/**/
        
        }catch(Exception e){System.out.print("Error:"+e.getMessage());}   
    }
}
搜索更多相关主题的帖子: public import count 
2010-05-19 16:04
linjx0123
Rank: 9Rank: 9Rank: 9
等 级:贵宾
威 望:14
帖 子:279
专家分:1362
注 册:2006-4-7
得分:0 
程序代码:
import *;
public class Test1 {
    public static void main(String[] args)throws Exception {
    try{
        byte buf[] = new byte[50];
        System.out.print("input:");    //输入小于100整数
        int count = System.in.read(buf);
        String strBuf = new String(buf,0,count-2);
        System.out.println(strBuf);
        int n=Integer.parseInt(strBuf);
        System.out.println("n:"+n);   //这一行,总是不能显示出来,怎么回事啊?
        int m = 100/n;
        System.out.println(m);/**/
       
        }catch(Exception e){System.out.print("Error:"+e.getMessage());}   
    }
}
2010-05-19 16:28
informed
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2009-2-6
得分:0 
回复 2楼 linjx0123
谢谢啦,终于调好了~~不过想知道为什么这么改!能说明原因么?~~
2010-05-19 16:34
linjx0123
Rank: 9Rank: 9Rank: 9
等 级:贵宾
威 望:14
帖 子:279
专家分:1362
注 册:2006-4-7
得分:0 
因为最后两个字节为回车和换行
2010-05-19 17:31
informed
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2009-2-6
得分:0 
回复 4楼 linjx0123
嗯~~明白~!谢谢
2010-05-19 17:37



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-307322-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.091614 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved