Run ID:126807
提交时间:2025-07-21 17:21:13
#include <bits/stdc++.h> using namespace std; int main() { int a, b, d; double n;//标准体重 cin >> a >> b; n = a - 100 * 0.9; if (d > n * 1.1) { cout << "fat"; } else if (d < n * 0.9) { cout << " thin "; } else { cout << "standard"; } return 0; }