Program to print stars half pyramid - Learn in the easy way

Happy Learning...

ads

Post Top Ad

Program to print stars half pyramid

Share This
Code of the program:✌
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
cout<<"\t\n<<<< Program to print the Stars Using setw >>>>"<<endl;
cout<<setw(20)<<"*"<<endl;
cout<<setw(21)<<"**"<<endl;
cout<<setw(22)<<"***"<<endl;
cout<<setw(23)<<"****"<<endl;
cout<<setw(24)<<"*****"<<endl;
cout<<setw(25)<<"******"<<endl;
cout<<setw(26)<<"*******"<<endl;
cout<<setw(27)<<"********"<<endl;
return 0;
}
Output:👇

No comments:

Post a Comment

Tell me What can I do for you.....Comment, please

Post Bottom Ad

Pages