- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- int a;
- int b;
- cout<<"請輸入a:";
- cin>>a;
- cout<<"請輸入b:";
- cin>>b;
-
- cout<<"a="<<a<<endl;
- cout<<"b="<<b<<endl;
-
- if(a>b)
- {
- cout<<"a<b"<<"吃土吧你,說甚麼a大於b"<<endl;
- }
- if(a<b)
- {
- cout<<"a<b"<<"去死吧你,居然是a小於b"<<endl;
- }
- if(a==b)
- {
- cout<<"a=b"<<"都被騙了,就說其實是a等於b"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |