Print the pattern
* * * * * *
* * * * * *
* * * * * *
* * * * * *
* * * * * *
Code
#include<bits/stdc++.h>
using namespace std;
// Function to print star
void star(int y)
{
while(y--)
{
cout<<"* ";
}
}
// main function
int main()
{
int n;
cin>>n;
for(int i=0;i<n;i++)
{
star(n+1);
cout<<endl;
}
return 0;
}
Input
5
Output
* * * * * *
* * * * * *
* * * * * *
* * * * * *
* * * * * *
0 Comments