gpt4 book ai didi

c - 相同翻转三角形的可能解决方案

转载 作者:行者123 更新时间:2023-11-30 21:30:01 25 4
gpt4 key购买 nike

/*下面的代码为您提供了 的第一个三角形,我想知道打印相同的三角形,但像下面的描述中那样翻转。/

#include <stdio.h>

int main()
{
int i,j,rows;
printf("Enter the number of rows: ");
scanf("%d",&rows);
for(i=1;i<=rows;++i)
{
for(j=1;j<=i;++j)
{
printf("* ");
}
printf("\n");
}
return 0;
}

*
* *
* * *
* * * *
* * * * *

如何更改上面的代码来获得这个三角形:

     *
**
***
****
*****
******

最佳答案

这个代码就是你所需要的

#include<stdio.h>
int main()
{
int a,b,n;
for(n=0;n<7;n++)
{
for(a=7;a>=n;a--)
{
printf(" ");
}
for(b=0;b<n;b++)
{
printf("*");
}
printf("\n");
}
return 0;
}

关于c - 相同翻转三角形的可能解决方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28446326/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com