None
Print out the table in a matrix like fashion, each number formatted to a width of 4 (The numbers are right-aligned and strip out leadeing/trailing spaces on each line). The first 3 line will look like:
e.g.
1 2 3 4 5 6 7 8 9 10 11 12 2 4 6 8 10 12 14 16 18 20 22 24 3 6 9 12 15 18 21 24 27 30 33 36
i am not able to print this column wise can you help please.....
class Program
{
static void Main(string[] args)
{
int i,j,sum=0;
for (i = 1; i <= 12; i++)
{
for (j = 1; j <= 10; j++)
{
sum = i * j;
Console.WriteLine(sum);
}
}
Console.ReadLine();
}
}
this is my code....
please do help me
This post has been edited by tlhIn`toq: 30 September 2012 - 12:35 PM
Reason for edit:: code tags added

New Topic/Question
This topic is locked



MultiQuote





|