c语言的循环

作者在 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);
c | 阅读 1244 次
文章评论,共0条
游客请输入验证码
浏览56072次
最新评论