/*
Write a C++ Program to display the following
output by nested for loop.
*****
****
***
**
*
For Free C++ Programming Techniques (Example Programs), visit
Www.EasyCppProgramming.Blogspot.Com
and For Good Notes
Visit Www.ForFreeEducation.Blogspot.Com
*/
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int counter1, counter2;
cout<<"\n\n ----------- Results ------------\n";
for ( counter1 =5; counter1>=1; counter1--)
{
for(counter2=1; counter2<=counter1; counter2++)
cout<<"*";
cout<<endl;
}
getch();
}
Write a C++ Program to display the following
output by nested for loop.
*****
****
***
**
*
For Free C++ Programming Techniques (Example Programs), visit
Www.EasyCppProgramming.Blogspot.Com
and For Good Notes
Visit Www.ForFreeEducation.Blogspot.Com
*/
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int counter1, counter2;
cout<<"\n\n ----------- Results ------------\n";
for ( counter1 =5; counter1>=1; counter1--)
{
for(counter2=1; counter2<=counter1; counter2++)
cout<<"*";
cout<<endl;
}
getch();
}
Python Print Star Patterns 14 Programs
ReplyDelete