Board logo

標題: 024 兩數字比大小 [打印本頁]

作者: 游東祥    時間: 2014-3-29 14:02     標題: 024 兩數字比大小

[attach]865[/attach][attach]864[/attach][attach]863[/attach]
作者: 李允軒    時間: 2014-3-29 14:12

  1. #include <iostream>
  2. #include <cstdlib>

  3. using namespace std;

  4. int main()
  5. {
  6.         int i;
  7.         int j;
  8.         cout << "請輸入第一個數字:";
  9.         cin >> i;
  10.         cout << "請輸入第二個數字:";
  11.         cin >> j;
  12.         if(j > i)
  13.         {
  14.                 cout << j << ">" << i << endl;
  15.         }
  16.         else if(i > j)
  17.         {
  18.                 cout <<  i << ">" << j << endl;
  19.         }
  20.         else
  21.         {
  22.                 cout <<"兩個一樣大,都是" << i <<endl;
  23.         }
  24.     system("pause");
  25.     return 0;

  26. }
複製代碼

作者: 林宇翔    時間: 2014-3-29 14:13

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.                 int x;
  7.                 int y;
  8.                 cout << "請輸入第一個數字:";
  9.                 cin >> x;
  10.                 cout << "請輸入第二個數字:";
  11.                 cin >> y;
  12.                 if(x > y)
  13.                 {
  14.                         cout << x << " > " << y <<endl;
  15.                 }
  16.                 else if( y > x )
  17.                 {
  18.                         cout << y << " > " << x <<endl;
  19.                 }
  20.                 else if( y = x )
  21.                 {
  22.                         cout << x << " = " << y <<endl;
  23.                 }
  24.                 system ("pause");
  25.         return 0;
  26. }
複製代碼
[attach]866[/attach][attach]867[/attach][attach]868[/attach]




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2