輸入正整數(shù)n<=20 輸出一個(gè)n層倒三角益兄。
#include <iostream>
#include <stdio.h>
using namespace std;
int main(int argc, char const *argv[])
{
int i = 0;
scanf("%d", &i);
while (i > 0 && i<= 20)
{
for (int j = 0; j < 2*i-1; j++)
{
printf("%s","#");
}
i--;
cout<<endl;
}
return 0;
}