| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Welcome to the Star Pattern Programs repository! 🌟
This repository contains various star patterns implemented in c++ programming languages, May it includes some patterns of numbers instead of stars .These patterns are commonly used in coding practice and interviews to demonstrate understanding of loops.
* * * * * * * * * * * * * * *
*
***
*****
*******
*********
*********
*******
*****
***
*
*
***
*****
*******
*********
*******
*****
***
*
*
* *
* * *
* * * *
* * * * *
* * * * * * * * * * * * * * * *
int main()
int n ;
cin>>n;
{
for(int i=1;i<=5;i++)
{
for(int j=1;j<=5;j++)
{
if(j<=i)
{
cout<<"⭐";
}
else
{
cout<<" ";
}
}
cout<<endl;
}
}
If you have any questions or suggestions, feel free to reach out via issues or email.
Happy Coding! 😊
| Back | FazBrowse Home | New Git URL |