返回列表 發帖
[code#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    for(int i=1; i<=100; i++)
    {
          cout<<i<<endl;
    }
   
    system("pause");
    return 0;
}][/code]

TOP

  1. [code]#include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int  main()
  5. {
  6.      for(int i=1;i<=100;i++)
  7.      {           
  8.          cout<<i<<endl;
  9.      }
  10.     system("pause");
  11.     return 0;
  12. }         
  13.             
  14.               
複製代碼
[/code]

TOP

返回列表