美文网首页
2018-11-21(1)

2018-11-21(1)

作者: 一只皮皮橙 | 来源:发表于2018-11-22 14:27 被阅读0次

    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 i = 1; i <= a;i++)

    {

    Console.Write("{0}*{1}={2}\t", a, i, a * i);

    }

    Console.WriteLine();

    }

    Console.ReadKey();

    }

    }

    }

    相关文章

      网友评论

          本文标题:2018-11-21(1)

          本文链接:https://www.haomeiwen.com/subject/tenkqqtx.html