public class Pattern7
{
public static void main(String[] args)
{ int i ,j;
int n = 5;
for(i = n; i>0 ; i-- )
{
for(j = 1; j<=i ; j++)
{
System.out.print(j);
}
System.out.println("");
}
}
}
Python
for i in range(1,6):
for j in range(1, 6-i+1):
print(str(j)+" "),
print("")
C Program
#include <stdio.h>
int main()
{
int i ,j;
for(i = 5; i>0 ; i-- )
{
for(j = 1; j<i ; j++)
{
printf("%d",j);
}
printf("\n");
}
return 0;
}
C# program
using System;
public class Program
{
public static void Main(string[] args)
{
for (int i = 5; i >= 1; --i)
{
for (int j = 1; j <= i; ++j)
{
Console.Write(j);
}
Console.WriteLine();
}
}
}
JAVA
Python
C Program
C# program
PHP program
need an explanation for this answer? contact us directly to get an explanation for this answer