- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a;
- int b;
- cout<<"Please Enter";
- cin>>a;
- cout<<"Please Enter";
- cin>>b;
- cout<<"a="<<a<<endl;
- cout<<"b="<<b<<endl;
- if(a>b)
- {
- cout<<"a is greater thah b"<<endl;
- }
- else if(a<b)
- {
- cout<<"a is smaller than b"<<endl;
- }
- else
- {
- cout<<"a is equal to b"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |