关于使用C#编写 九九乘法表

2021-04-22 11:30

阅读:504

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();
                  }

         }
}


评论


亲,登录后才可以留言!