#30055: C++ㄉ答案


s010472@student.cysh.cy.edu.tw (yeee)

學校 : 國立嘉義高級中學
編號 : 182496
來源 : [163.27.3.90]
最後登入時間 :
2023-09-25 09:05:57
b676. 63萬勞工苦輪班不像人像機器 | From: [163.27.3.92] | 發表日期 : 2022-04-25 13:12

#include <iostream>

 

using namespace std;

 

int main()

{

    int x;

    while(cin >> x)

    {

        if(x%5>0)

        {

            if(x%5==4)

            {

                cout << "I" << endl;

            }

            else if(x%5==3)

            {

                cout << "T" << endl;

            }

            else if(x%5==2)

            {   

                cout << "Y" << endl;

            }

            else if(x%5==1)

            {

                cout << "G" << endl;

            }

        }

        else

        {

            cout << "U" << endl;

        }

    }

    return 0;

}

 

 
ZeroJudge Forum