#include <stdio.h>
int main()
{
int n = 5;
int i,j;
for(i = 1; i <= n; i++)
{
for (j = 1; j <= n; j++)
{
if (j >= i)
{
printf("%d ", n - j + i);
}
else
{
printf("1 ");
}
}
printf("\n");
}
return 0;
}
#include <iostream.h>
int main()
{
int n = 5;
for(int i = 1; i <= n; i++)
{
for(int j = 1; j <= n; j++)
{
if (j >= i)
{
cout<<(n - j + i)<<" ";
}
else
{
cout<<"1 ";
}
}
cout<<endl;
}
return 0;
}
class PatternProg
{
public static void main(String args[])
{
int n = 5;
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= n; j++)
{
if (j >= i)
{
System.out.print((n - j + i)+" ");
}
else
{
System.out.print("1 ");
}
}
System.out.println();
}
}
}
using System;
class PatternProg
{
public static void Main()
{
int n = 5;
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= n; j++)
{
if (j >= i)
{
Console.Write((n - j + i) + " ");
}
else
{
Console.Write("1 ");
}
}
Console.WriteLine();
}
Console.ReadKey(true);
}
}
n = 5
for x in range(1, n + 1):
for y in range(1, n + 1):
if y >= x:
print(str(n - y + x) + " ", end="")
else:
print("1 ", end="")
print()