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:👇
#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