java 比较三个数大小
classcompare2{publicstaticvoidmain(String[]args)throwsjava.io.IOException{System.out....
class compare2{
public static void main(String[] args)throws java.io.IOException{
System.out.println("Please enter three numbers:\n");
int a=(int)System.in.read();
int b=(int)System.in.read();
int c=(int)System.in.read();
if(a<b){
if(b<c){
System.out.println("a<b<c");
}else if(c<a){
System.out.println("c<a<b");
}else{
System.out.println("a<c<b");
}
}else if(a>b){
if(b>c){
System.out.println("a>b>c");
}else if(c>a){
System.out.println("c>a>b");
}else{
System.out.println("a>c>b");
}
}
}
}
我是新手,请问为什么不能输出正确的结果
为什么会这个样子?
Please enter three numbers:
1 2 3
c>a>b
a=49
b=32
c=50 展开
public static void main(String[] args)throws java.io.IOException{
System.out.println("Please enter three numbers:\n");
int a=(int)System.in.read();
int b=(int)System.in.read();
int c=(int)System.in.read();
if(a<b){
if(b<c){
System.out.println("a<b<c");
}else if(c<a){
System.out.println("c<a<b");
}else{
System.out.println("a<c<b");
}
}else if(a>b){
if(b>c){
System.out.println("a>b>c");
}else if(c>a){
System.out.println("c>a>b");
}else{
System.out.println("a>c>b");
}
}
}
}
我是新手,请问为什么不能输出正确的结果
为什么会这个样子?
Please enter three numbers:
1 2 3
c>a>b
a=49
b=32
c=50 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询