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 b = 1; b <= a; b++)
{
Console.Write(a + "*" + b + "=" + a * b + "\t");
}
Console.WriteLine();
}
Console.ReadLine();
}
}
}
时间: 2024-10-10 10:19:51