99乘法表變化版

#C#

Posted by Phyxsius on 2023-09-14

namespace ConsoleApp3
{
    internal class Program
    {
        static void Main(string[] args)
        {
            //呼叫方法
            ShowData(6, 8);
        }

        static void ShowData(int min, int max)
        {
            for (int i = min; i <= max; i++)
            {
                for (int j = min; j < max; j++)
                {
                    Console.Write(i + " * " + j + " = " + i * j + "\t");
                }
                Console.WriteLine();
            }
        }
    }
}

#C#







Related Posts

Day 66

Day 66

.Net MVC authorization Controller and Workcontext extension in razor view

.Net MVC authorization Controller and Workcontext extension in razor view

MTR04_0910

MTR04_0910


Comments