题解 | 牛牛是否被叫家长
牛牛是否被叫家长
https://www.nowcoder.com/practice/cc896ffd90d34c7faa318b04e87adf11
#include <iostream>
using namespace std;
int main() {
int a, b, c;
double res = 0;
cin >> a >> b >> c;
res = ((double)a + b + c) / 3;
if(res < 60) cout << "YES" << endl;
else cout << "NO" << endl;
return 0;
}
// 64 位输出请用 printf("%lld")
查看27道真题和解析