Write a Program to arrange numbers in below order
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
using system;
class program
{
static void main()
{
int i, j;
for (i=1; i<=5; i++)
{
for(j=1; j<=i; j++)
{
Console.Write(j+" ");
}
console.writeline();
}
Console.ReadLine();
}
}
No comments:
Post a Comment