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

TOP

返回列表