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