我收到了这个问题,我尝试了几次,但我什么都没想到:(
这就是问题:设计并编写一个程序来输入 10 个体重的人。它应该只接受 20 公斤至 100 公斤之间的重量。你的程序应该计算并打印这些人的平均、最大和最小体重。
这是我尝试过的代码。任何人都可以完成这个或想出一个简化的代码吗?这是正确的,我的意思是我这样做的方式吗?请帮忙
import java.util.Scanner;
class WeightOfPeople{
public static void main(String args []){
Scanner sc = new Scanner(System.in);
System.out.print("Enter a weight between 20kg - 100kg :");
int weight1 = sc.nextInt();
if(20 < weight1 && weight1 < 100){
System.out.print("Enter a weight between 20kg - 100kg :");
int weight2 = sc.nextInt();
}else{
System.out.println("Enter a correct weight");
}
}