题解
2023-11-18 10:57:17
发布于:上海
13阅读
0回复
0点赞
#include<iostream>
int main()
{
int x,l,e=0;
::std::cin>>x;
while(x){
::std::cin>>l;
if(l>70)
{
while(l>0){
l-=70;
e++;
}
}
else e++;
x--;
}
::std::cout<<::std::fixed<<::std::setprecision(1)<<(e/10.0);
return 0;

这里空空如也
有帮助,赞一个