不用小数的做法!
2023-12-09 17:32:10
发布于:广东
11阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main(){
int fei = 0, x;
int n;
cin >> n;
while(cin >> x){
if(x % 70){
fei += x / 70 + 1;
}else fei += x / 70;
}cout << fei / 10 << '.' << fei % 10;
return 0;
}
这里空空如也
有帮助,赞一个