看起来一定能过的代码(cpp):``` #include <bits/stdc++.h> using namespace std; int main(){ int a,b,c,result; cin >> a >> b >> c; result = a / 100 * 20 + b / 100 * 30 + c * 50 / 100; cout << result; return 0; }
#### 啊这。。。。。有啥问题???