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

9月18日

时间:2014-09-18 23:32:24      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:io   ar   for   sp   c   r   bs   as   har   

#include <stdio.h>

int main(void)

{

    char c ;

    c =getchar();

    int totalCount=c -‘a‘;

    for (int count=0; count<= totalCount ; count++)

    {

        for(int i= totalCount ; i>count ; i--)

        {

            printf("%c",‘ ‘);

        }

        for (int i=0; i<=count ; i++)

        {

            printf("%c",‘a‘+i);

        }

        for (int u=count ;u>=0;u--)

        {

            printf("%c",‘a‘+u-1);

        }

        

        printf("\n");

        

    }

 

}

9月18日

标签:io   ar   for   sp   c   r   bs   as   har   

原文地址:http://www.cnblogs.com/Mr573/p/3980257.html

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