java实现三只小猪称体重
作者:互联网
森林里面住着三只小猪,最近又到了他们称体重的时候,请用程序实现获取这三只小猪中的最重体重。
import java.util.Scanner;
public class ScannerTest {
public static void main (String[]args){
Scanner sc=new Scanner(System.in);//体重未知,采用键盘录入实现,首先导包,然后创建对象。
System.out.print("请输入第一只小猪的体重:");
int weight1= sc.nextInt();//键盘录入三只小猪的体重分别赋值给三个变量。
System.out.print("请输入第二只小猪的体重:");
int weight2= sc.nextInt();
System.out.print("请输入第三只小猪的体重:");
int weight3= sc.nextInt();
int tempWeight = 0;
int maxWeight=tempWeight>weight3?tempWeight:weight3;//用三元运算符获取前两只小猪的较高体重,并用临时体重变量保存起来
System.out.print("三只小猪中体重最重的是:"+maxWeight+"kg");//输出体重测试结果
}
}
最终的测试结果是:
请输入第一只小猪的体重:45
请输入第二只小猪的体重:50
请输入第三只小猪的体重:55
三只小猪中体重最重的是:55kg
标签:java,小猪,int,System,三只,体重,print,out 来源: https://blog.csdn.net/m0_64389719/article/details/121557243