Files
python/TangDou/XiTi/1111.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

14 lines
240 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
for (int i = 0; i <= 50; ++i) {
if (i * 0.80 - (50 - i) * 0.30 == 18) {
cout << i << endl;
break;
}
}
return 0;
}