programming-examples/c++/Basic/Pattern 6.cpp

27 lines
448 B
C++
Raw Permalink Normal View History

2019-11-18 14:44:36 +01:00
#include <iostream.h>
#include <conio.h>
void main()
{
clrscr(); //clears the previous screen
//Printing pattern
int i,j,rows;
cout<<"Enter the number of rows: ";
cin>>rows;
for(i=rows; i>=1; --i)
{
for(j=1; j<=i; ++j)
{
cout<<"* ";
}
cout<<"\n";
}
getch(); // wait for input
}
/*
*****
****
***
**
*
*/