标题:教材程序,三个数比较大小, 什么地方出现有误
取消只看楼主
hdjtcmcn
Rank: 1
等 级:新手上路
帖 子:16
专家分:0
注 册:2016-9-5
结帖率:50%
已结贴  问题点数:6 回复次数:0 
教材程序,三个数比较大小, 什么地方出现有误
improt *;
public class CompIf{
pubic static void main(String args[]) throws IOException{
 int a,b,c,t;
 String str;
 BufferedReader buf;
 buf=new BufferedReader(new InputStreamReader(System.in));
 System.out.print("input sirst number:");
 str=buf.readLine();
 a=Integer.parseInt(str);
 System.out.print("input second number:");
 str=buf.readline();
 b=Integer.parseInt(str);
 System.out.print("input third number:");
 str=buf.readline();
 a=Integer.parseInt(str);
 if (a>b)
   {t=a;a=b;b=t;}
 if (a>c)
   {t=a;a=c;c=t;}
 if (b>c)
   {t=b;b=c;c=t;}
  System.out.print(a+",");
  System.out.print(b+",");
  System.out.print(c+",");
   
}
}
jdk8下调试
误在1、3行
搜索更多相关主题的帖子: 教材 str System out print 
2017-10-29 10:35



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




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

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