据说一个人的标准体重应该是其身高(单位:厘米)减去100、再乘以0.9所得到的公斤数。真实体重与标准体重误差在10%以内都是完美身材(即 | 真实体重 ? 标准体重 | < 标准体重×10%)。已知 1 公斤等于 2 市斤。现给定一群人的身高和实际体重,请你告诉他们是否太胖或太瘦了。
输入第一行给出一个正整数N(≤ 20)。随后N行,每行给出两个整数,分别是一个人的身高H(120 < H < 200;单位:厘米)和真实体重W(50 < W ≤ 300;单位:市斤),其间以空格分隔。
为每个人输出一行结论:如果是完美身材,输出You are wan mei!;如果太胖了,输出You are tai pang le!;否则输出You are tai shou le!。
3
169 136
150 81
178 155
You are wan mei!
You are tai shou le!
You are tai pang le!
暂无
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int N = scanner.nextInt(); // 读取人数
for (int i = 0; i < N; i++) {
int height = scanner.nextInt(); // 身高
int weight = scanner.nextInt(); // 实际体重(市斤)
double standardWeight = (height - 100) * 0.9 * 2; // 计算标准体重(市斤)
double tolerance = standardWeight * 0.1; // 计算误差范围
if (Math.abs(weight - standardWeight) < tolerance) {
System.out.println("You are wan mei!");
} else if (weight > standardWeight) {
System.out.println("You are tai pang le!");
} else {
System.out.println("You are tai shou le!");
}
}
}
}