作者在 2011-12-07 13:07:27 发布以下内容
1.for
2.while
3.do...while
for(int i=0;i<10;i++)
printf("%4d",i);
while(1)
{
printf("welcome to the world");
}
do{
printf("hello,world");
}while(1);
2.while
3.do...while
for(int i=0;i<10;i++)
printf("%4d",i);
while(1)
{
printf("welcome to the world");
}
do{
printf("hello,world");
}while(1);