码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2017-12-10 22:53:23      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:console   lin   bsp   关于   void   readline   pos   nbsp   system   

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

         }
}

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

标签:console   lin   bsp   关于   void   readline   pos   nbsp   system   

原文地址:http://www.cnblogs.com/qwe32100/p/8018235.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!