其他分享
首页 > 其他分享> > 三个和尚比身高

三个和尚比身高

作者:互联网

package scannerTest.java;

import java.util.Scanner;

public class scannerTest {
    public static void main(String[] args) {
        Scanner sc=new Scanner(System.in);
        System.out.println("请输入第一个和尚的身高:");
        int height1=sc.nextInt();
        System.out.println("请输入第二个和尚的身高:");
        int height2=sc.nextInt();
        System.out.println("请输入第三个和尚的身高:");
        int height3=sc.nextInt();
        int tempHeight=height1>height2?height1:height2;
        int maxHeight=tempHeight>height3?tempHeight:height3;
        System.out.println("这三个和尚中最高的是:" +maxHeight+"cm");
    }

}
 

标签:nextInt,int,System,println,三个,sc,身高,和尚,out
来源: https://blog.csdn.net/qq_55808801/article/details/123087844