NOI 排名判断:小兔子赢了吗?
#include
int main() { int a, b, c, d; cin >> a >> b >> c >> d;
int sum = a + b + c + d;
if (sum < 51) {
cout << "Rabbit wins" << endl;
} else {
cout << "Rabbit lose" << endl;
}
return 0;
}
原文地址: https://www.cveoy.top/t/topic/qhWC 著作权归作者所有。请勿转载和采集!