Try to print the following number pattern using C++.
#include <iostream>
using namespace std;
int main()
{
int i, j, k;
// First Part
for(i=1; i<=5; i++)
{
for(j=5; j>=1; j--)
{
if(i == j)
cout << j;
else
cout << " ";
}
for(k=2; k<=5; k++)
{
if(i == k)
cout << k;
else
cout << " ";
}
cout << "\n";
}
// Second Part
for(i=4; i>=1; i--)
{
for(j=5; j>=1; j--)
{
if(i == j)
cout << j;
else
cout << " ";
}
for(k=2; k<=5; k++)
{
if(i == k)
cout << k;
else
cout << " ";
}
cout << "\n";
}
return 0;
}