js输出金字塔如何设置居中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js输出金字塔如何设置居中相关的知识,希望对你有一定的参考价值。
参考技术A js输出金字塔设置居中步骤如下:1、按照金字塔行数减1的数量从高到低按相对应的空格键次数。
2、每一行在按好空格键次数后打上星号即可使js输出的金字塔居中。
用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;
以上是关于js输出金字塔如何设置居中的主要内容,如果未能解决你的问题,请参考以下文章