问题标题: 酷町堂:2162 90分代码,求解??

0
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;
}

 


0
已采纳
傅文彬
傅文彬
新手天翼
新手天翼

if判断就可以AC

0
我要回答