2018-11-21(1)

2018-11-22  本文已影响0人  一只皮皮橙

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

namespace ConsoleApplication1

{

class Program

{

static void Main(string[] args)

{

for (int a = 1; a <=9; a++)

{

for (int i = 1; i <= a;i++)

{

Console.Write("{0}*{1}={2}\t", a, i, a * i);

}

Console.WriteLine();

}

Console.ReadKey();

}

}

}

上一篇下一篇

猜你喜欢

热点阅读