返回列表 發帖
本帖最後由 劉漢文 於 2011-10-15 16:16 編輯
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int i;
  6.     for(i=100; i>=1; i-=1)
  7.     {
  8.            cout<<i<<endl;
  9.     }
  10. cout<<endl;   
  11. system("pause");   
  12. return 0;      
  13. }
複製代碼

TOP

返回列表