码迷,mamicode.com
首页 > 编程语言 > 详细

c语言打印字母三角形

时间:2014-09-18 21:52:24      阅读:588      评论:0      收藏:0      [点我收藏+]

标签:io   os   ar   strong   for   sp   on   c   amp   

#include <stdio.h>

 

int main(int argc, const char * argv[]) {

    

    char cost,top;

    cost=getchar();

    if (cost>=‘a‘&&cost<=‘z‘) {

        top=‘a‘;

    }else if (cost>=‘A‘&&cost<=‘Z‘)

    {

        top=‘A‘;

    }

    int h=cost-top;

    for (int j=0; j<=h; j++) {

        for (int k=h;k>j ; k--) {

            printf(" ");

        }

        for (int l=0; l<j; l++) {

            printf("%c",top+l );

        }

        for (int g=j; g>=0; g--) {

            printf("%c",top+g);

        }

        printf("\n");

    }

    return 0;

打印结果为:

      A

    ABA

  ABCBA

ABCDCBA

c语言打印字母三角形

标签:io   os   ar   strong   for   sp   on   c   amp   

原文地址:http://www.cnblogs.com/a514875560/p/3980035.html

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