打印字母对称型的金字塔图案(C语言)

题目:(c语言) 让程序要求用户输入一个大写字母,使用嵌套环产生像下面这样的金字塔图案:在这里插入图片描述

#include 
#include 

int main()
{
    char squ[5]="ABCDE";
    int top=0;

    for(int i=1; i<6; i++)
    {
        for(int j=5; j-i>0; j--)
        {
            printf(" ");
        }
        while(top!=i-1){
            printf("%c",squ[top]);
            top++;
        }
        if(top==i-1){
            while(top>-1){
                printf("%c",squ[top]);
                top--;
            }
        }
        printf("\n");
        top=0;
    }
    return 0;
}

你可能感兴趣的:(打印字母对称型的金字塔图案(C语言))