We are providing online training of realtime Live project on Asp.Net MVC with Angular and Web API. For more information click here. If you have any query then drop the messase in CONTACT FORM

Tuesday, June 2, 2015


11111
2222
333
44
5

class Program

{
static void Main(string[] args)

{
int i, j;

for (i = 1; i <= 5; i++)

{
for (j = 5; j >= i; j--)

{
Console.Write(i);

}
Console.WriteLine();

}
Console.ReadLine()

}

}
 
 
 

No comments: