|
楼主 |
发表于 4-3-2006 02:54 PM
|
显示全部楼层
N=20
READ FROM FILE之后。。。
哪个FILE里面有30个NUMBER。。。可是我只要前二十个NUMBER。。
我就TYPE
for(count=1,count<=N,count++)
cout << count << end1;
分成一行十个的话我可不可以用。。。
for(count=1,count<=N,count++)
for (count=1,count<10,count++)
cout << count <<end1;
for (count=11, count<N,count++)
count <<count <<endl; |
|