用C语言for循环设计字母金字塔,并输出对应的大小写字母,还有ns流程图,拜托,。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用C语言for循环设计字母金字塔,并输出对应的大小写字母,还有ns流程图,拜托,。相关的知识,希望对你有一定的参考价值。
参考技术A #include<stdio.h>int main()
int i=0;
int row=5;
printf("please input row:");
scanf("%d",&row);
for(i=1;i<=row;i++)
char ch='A';
int num=0;
for(int j=1;j<2*row;j++)
if(j>row-i)
if(num<2*i-1)
if(j<row)
printf("%c",ch++);
else
printf("%c",ch--);
num++;
else
printf(" ");
printf("\n");
return 0;
以上是关于用C语言for循环设计字母金字塔,并输出对应的大小写字母,还有ns流程图,拜托,。的主要内容,如果未能解决你的问题,请参考以下文章