10分钟完成
新学的循环读入次数不确定的方法
#include<iostream>
using namespace std;
int main()
{
//freopen("xxx.in","r",stdin);
//freopen("yyy.out","w",stdout);
int n;
while(cin>>n, n!=0)
{
for(int i=1;i<=n;i++)
cout << i << " ";
cout << endl;
}
//fclose(stdin);
//fclose(stdout);
return 0;
}