#2
rainbow12010-12-02 21:18
|
#include <iostream.h>
void main()
{
int i,j;
for(i=3,j=5;i=j;i++,j--)
cout<<i<<j<<endl;
}
我运行了一下输出为 55 44 33 22 11