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