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