Skip to main content
Search
Search This Blog
Kabeer Mukhi
In this Blog you will find tips and tricks related to Technology And Programming.
Home
Contact
About
More…
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
Labels
C++
Pattern
May 30, 2018
#5 C++ Pattern
#include<iostream.h>
#include<conio.h>
void main()
{
int i,j,n;
clrscr();
cout<<"Enter Your Number : ";
cin>>n;
for(i=1;i<=n;i++)
{
for(j=n;j>=1;j--)
{
cout<<j<<" ";
}
cout<<endl;
}
getch();
}
Output ::
Enter Your Number : 5
You Can Download This Program From Here
Comments
Popular Posts
November 09, 2018
Program To Find Minimum of the given two number in C++
June 19, 2018
#18 C++ Pattern
Comments
Post a Comment