问题标题: 酷町堂:2352

0
0
已解决
李梓皞
李梓皞
中级守护
中级守护

题目链接: 酷町堂:2352

#include<iostream>

#include<iomanip>

using namespace std;

int main(){

double a,b,c;

    cin>>a>>b>>c;

    if(a>=b){

    a=a+b;

    c+=1;

    printf("%.1f",a);

    cout<<" "<<int(c);

    }

    if(a<b){

    a=0;

    c-=2;

    

    cout<<" "<<a;

    printf("%.2",c);

    }

    return 0;

}


0
已采纳
朱宸煜
朱宸煜
新手守护
新手守护

这道题很简单(我也就错了4次)。输出a的那一行应是(int)a<<" "

0
刘小川
刘小川
中级天翼
中级天翼

这道题先那样在这样明白了吗

 

我要回答