1 Star 0 Fork 0

YChienHung/PTA-Practise-C

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
p5-3.c 410 Bytes
一键复制 编辑 原始数据 按行查看 历史
YChienHung 提交于 2019-10-11 16:50 . PTA
#include <stdio.h>
void pyramid( int n );
int main()
{
int n;
scanf("%d", &n);
pyramid(n);
return 0;
}
/* 你的代码将被嵌在这里 */
void pyramid( int n )
{
int x,y,z;
for(x=1;x<=n;x++)
{
/*补全空格*/
for(y=1;y<=n-x;y++)
{
putchar(' ');
}
/*补全数字*/
for(z=1;z<=x;z++)
{
printf("%d ",x);
}
printf("\n");
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/YChienHung/PTA-Practise-C.git
[email protected]:YChienHung/PTA-Practise-C.git
YChienHung
PTA-Practise-C
PTA-Practise-C
master

搜索帮助