標題:
024 兩數字比大小
[打印本頁]
作者:
游東祥
時間:
2014-3-29 14:02
標題:
024 兩數字比大小
[attach]865[/attach][attach]864[/attach][attach]863[/attach]
作者:
李允軒
時間:
2014-3-29 14:12
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int i;
int j;
cout << "請輸入第一個數字:";
cin >> i;
cout << "請輸入第二個數字:";
cin >> j;
if(j > i)
{
cout << j << ">" << i << endl;
}
else if(i > j)
{
cout << i << ">" << j << endl;
}
else
{
cout <<"兩個一樣大,都是" << i <<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林宇翔
時間:
2014-3-29 14:13
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
int y;
cout << "請輸入第一個數字:";
cin >> x;
cout << "請輸入第二個數字:";
cin >> y;
if(x > y)
{
cout << x << " > " << y <<endl;
}
else if( y > x )
{
cout << y << " > " << x <<endl;
}
else if( y = x )
{
cout << x << " = " << y <<endl;
}
system ("pause");
return 0;
}
複製代碼
[attach]866[/attach][attach]867[/attach][attach]868[/attach]
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2