Multiplication Table by darefilz

class P{static void Main(){string a;for(int i=1,j,p;i<=12;++i){for(a="",j=1,p=3;j<=12;++j,p=4)a+=(""+(j*i)).PadLeft(p);System.Console.WriteLine(a);}}}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page