- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- cout<<"<歡迎使用自動比大小軟體>"<<endl;
- cout<<"<製作者 : 影武 嚴禁複製>"<<endl;
- int x,y,z;
- cout<<"~請輸入第一個數:";
- cin>>x;
- cout<<"~請輸入第二個數:";
- cin>>y;
- z=(x>y)?x:y;
- cout<<"~兩數中較大的數為"<<z<<endl;
- cout<<"<製作者 : 影武 嚴禁複製>"<<endl;
- cout<<"<*~@感謝您的使用@~*r>"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |