make and run a program that will display the output below
#####
####
###
##
#
it should use forloops,, i cant make one, but the code is long.
i cant make it work
also, you need to use the concept of rows and columns
heres mine,, its epic fail
pls help me
#include<iostream>
using namespace std;
int main()
{
int row;
for(row=1; row<=5; row++)
{cout<<"#";
cout<<'/n';
for(row=1; row<=4; row++)
cout<<"#";
cout<<'/n';
for(row=1; row<=3; row++)
cout<<"#";
cout<<'/n';
for(row=1; row<=2; row++)
cout<<"#";
cout<<'/n';
for(row=1; row<=1; row++)
cout<<"#";
cout<<'/n';
}
system("pause");
return 0;
}