#32843: c++ if 解法


yp11151203@yphs.tp.edu.tw (802-39楊子頡)

學校 : 臺北市私立延平高級中學
編號 : 197196
來源 : [203.72.178.1]
最後登入時間 :
2024-01-12 16:11:14
b676. 63萬勞工苦輪班不像人像機器 | From: [203.72.178.1] | 發表日期 : 2022-11-10 17:31

#include<bits/stdc++.h>
using namespace std;
int main(){
    int x;
    while(cin>>x){
        if(x%5==0) cout<<"U"<<endl;
        else if(x%5==1) cout<<"G"<<endl;
        else if(x%5==2) cout<<"Y"<<endl;
        else if(x%5==3) cout<<"T"<<endl;
        else if(x%5==4) cout<<"I"<<endl;
    }
      return 0;
}

 

 
ZeroJudge Forum