C# 九九乘法表
关注我,带你了解C#的魅力
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace 乘法
{
internal class Program
{
static void Main(string[] args)
{
for (int i = 1; i < 10; i++)
{
for (int j = 1; j <= i; j++)
{
Console.Write("{0} x {1} = {2} ",i,j,i*j);
}
Console.WriteLine();
}
Console.ReadLine();
}
}
}