Anonymous

What Is The Code For Printing A Pyramid Of Stars " * " In C++?

4

4 Answers

Anonymous Profile
Anonymous answered
#include
#include
void main ()
{
clrscr ();
int I,j,k;
for(I=1;I=I;j--)
{
  cout
Anonymous Profile
Anonymous answered
#include
int main()

{
int row, column, size, space, nbofstars=1;
scanf("%d", &size);

for(row=1; row
Girish Chilkewar Profile
Refer wikkipedia.com
and use * with loop(for , whil loop)--->inner loop and outer loop
Anonymous Profile
Anonymous answered
Forget it it can't b done

Answer Question

Anonymous