倒三角
Posted go-alltheway
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了倒三角相关的知识,希望对你有一定的参考价值。
输入正整数 n <= 20 , 输出一个 n 层的倒三角。例如, n = 5 时输出如下
#########
#######
#####
###
#
代码如下
#include<iostream>
using namespace std;
int main()
{
int n;
int num=0;
while (cin>>n)
{
num = 2*n - 1;
for (int i = 1; i <= n; i++)
{
for (int j = num; j > 0; j--)
cout<<"#";
cout<<endl;
for (int k = 1; k <= i; k++)
cout<<" ";
num = num - 2;
}
}
return 0;
}
以上是关于倒三角的主要内容,如果未能解决你的问题,请参考以下文章