#20: 解不出來


s084 (Cl0ud)

學校 : 不指定學校
編號 : 95
來源 : [118.163.232.198]
最後登入時間 :
2024-09-01 10:59:31
t010. 110 基本認識 (比大小) | From: [182.233.216.147] | 發表日期 : 2023-12-22 00:06

輸出第三行跟第二行的位置會互換

 

#include<bits/stdc++.h>

using namespace std;

 

int main()

{

    cin.tie(0);

    cin.sync_with_stdio(0);

    int a,b,c;

    cin>>a>>b>>c;

        if(a>=60 && a<100){

            cout<<"1\n";

        }

        else{

            cout<<"0\n";

        }

        printf("%.2f\n",(b+1)/10.00);

 

        if(a>=c){

            cout<<a<<endl;

        }

        else{

            cout<<c<<endl;

        }

    return 0;

}

 
ZeroJudge Forum