![]() |
#2
lz10919149992011-11-03 16:02
|
#include <stdio.h>
main()
{
int i ;int j; int m;
for(i=0;i<10;i++)
printf("00%d\n", i);
for( j=100;j<100;j++)
printf("0%d\n",j);
for(m=100;m<1000;m++)
printf("%d\n",m) ;
getch();
}
[ 本帖最后由 jsyesj 于 2011-11-3 15:20 编辑 ]