#1908: I will give you the answer but one chicken cover(雞包)


1753980-3@g.puiching.edu.mo (P5A31蒲雋浠)

School : No School
ID : 2571
IP address : [192.168.120.33]
Last Login :
2025-05-22 13:39:17
a067. 比大小 | From: [192.168.120.33] | Post Date : 2025-04-09 20:25

#include <iostream>
using namespace std;
int main()
{
    int a,b;
    cin>>a>>b;
    if (a<b)
    {
        cout<<"a 小於 b";
    }
    else if (a==b)
    {
        cout<<"a 等於 b";
    } 
    else 
    {
        cout<<"a 大於 b";
    }
    return 0;
}
 
ZeroJudge Forum