关于使用C#编写 九九乘法表
2021-04-22 11:30
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 {
for (int b = 1; b {
Console.Write(a + "*" + b + "=" + a * b + "\t");
}
Console.WriteLine();
}
Console.ReadLine();
}
}
}