码迷,mamicode.com
首页 > 其他好文 > 详细

大虫子

时间:2015-04-26 22:39:07      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

 1 #include<stdio.h>
 2 #include<stdlib.h>
 3 #include<Windows.h>
 4 int main(int argc, char* argv[])
 5 {
 6     while(1)
 7     {
 8         for(int i=0 ; i<10 ; ++i)
 9         {
10             for(int j=0 ; j<i ; ++j)
11                 printf(" ");
12             puts("^==========^");
13             Sleep(5);
14         }
15 
16         for(int i=10 ; i>0 ; --i)
17         {
18             for(int j=0 ; j<i ; ++j)
19                 printf(" ");
20             puts("^==========^");
21             Sleep(5);
22         }
23     }
24     system("pause");
25     return 0;
26 }

 

大虫子

标签:

原文地址:http://www.cnblogs.com/Evence/p/4458520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!