0
已解决
陈思远
修练者
修练者
#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
int main()
{
double a,b,c,x,y;
cin>>a>>b>>c;
x=a+b+c;
y=x-(int)x;
if(y>=0.0&&y<=0.4)
{
x=(int)x;
printf("%.1f",x);
}
else if(y>=0.5&&y<=0.9)
{
printf("%.1f",(int)x+0.5);
}
return 0;
}