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

字幕金字塔

时间:2014-09-18 22:09:54      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   for   div   sp   log   c   

 1         char t;
 2         t = getchar();
 3         int count = t - 96;
 4         if(t >= 97 && t <= 122)
 5         {
 6         int charNum = count;
 7         for(int i = 1;i <= count;i++)
 8         {
 9           for(int i1=1;i1 <= charNum;i1++)
10           {
11             printf(" ");
12           }
13 
14           for(int i2 = 1;i2 <= count - charNum +1;i2++)
15           {
16             printf("%c",96 + i2);
17 
18           }
19 
20           for(int i3 = 1;i3 <= count - charNum;i3++)
21           {
22             printf("%c",97 + count - charNum - i3);
23           }
24 
25 
26           printf("\n");
27           charNum--;
28         }
29 
30         }
31 
32 
33 
34         return 0;

bubuko.com,布布扣

字幕金字塔

标签:style   blog   color   ar   for   div   sp   log   c   

原文地址:http://www.cnblogs.com/garypluto/p/3980108.html

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