返回列表 發帖
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
    int k=0;
    while (k<=10)
   {
   cout<<k<<endl;
   k++;      
   }
   
   system("pause");
   return 0;
}

TOP

返回列表