A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

import java.util.Scanner;
class IfYuJu{
public static void main(String[] args){
         Scanner sc=new Scanner(System.in);
         System.out.println("请输入第一个数据");
     int a = sc.nextInt();
         System.out.println("请输入第二个数据");
     int b = sc.nextInt();
         System.out.println("请输入第三个数据");
     int c = sc.nextInt();
        int max=0;
if (a>=b && a>=c){
    max = a;  
}else if(b>=a && b>=c){
    max = b;
}else if(c>=a && c>=b){
    max = c;
}
System.out.println("max:"+max);
}  
   }

1 个回复

倒序浏览
我试了好几个数值都没有错误
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马