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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

public static void compIf() {
                Scanner sc = new Scanner(System.in);//键盘录入三个数
                int x = sc.nextInt();
                int y = sc.nextInt();
                int z = sc.nextInt();

                if(x > y && x > z) {
                        System.out.println("最大值是:" + x);
                } else if(y < z) {   // 此时x>y,则x<z或x<y均可
                        System.out.println("最大值是:" + z);
                } else {
                        System.out.println("最大值是:" + y);
                }
                       
        }

1 个回复

倒序浏览
System.out.print( "最大值"+( x > y ) ? ( ( x > z ) ? x : z ) : ( ( y > z ) ? y : z ) );
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马