• 大小: 0.02M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-02-24
  • 语言: C#
  • 标签: C#  入门  入门级  

资源简介

C# 九九乘法口诀(入门级)

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 九九乘法口诀
{
    class Program
    {
        static void Main(string[] args)
        {
            for (int i = 1; i < 10; i++)
            {
                for (int j = 1; j < 10; j++)
                {
                    if (j <= i)
                    {
                        Console.Write(“{0}*{1}={2}\t“ i j i * j);//行数乘以列数得两数之积“\t“表示将光标后移8位
                    }
                }
                Console.WriteLine();
            }
            Console.ReadKey();
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       5120  2018-06-07 15:28  九九乘法口诀\九九乘法口诀\bin\Debug\九九乘法口诀.exe

     文件      13824  2018-06-07 15:28  九九乘法口诀\九九乘法口诀\bin\Debug\九九乘法口诀.pdb

     文件      11600  2019-04-18 08:21  九九乘法口诀\九九乘法口诀\bin\Debug\九九乘法口诀.vshost.exe

     文件        490  2010-03-17 22:39  九九乘法口诀\九九乘法口诀\bin\Debug\九九乘法口诀.vshost.exe.manifest

     文件       5915  2019-04-18 08:21  九九乘法口诀\九九乘法口诀\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件        416  2019-04-18 08:21  九九乘法口诀\九九乘法口诀\obj\x86\Debug\九九乘法口诀.csproj.FileListAbsolute.txt

     文件       5120  2018-06-07 15:28  九九乘法口诀\九九乘法口诀\obj\x86\Debug\九九乘法口诀.exe

     文件      13824  2018-06-07 15:28  九九乘法口诀\九九乘法口诀\obj\x86\Debug\九九乘法口诀.pdb

     文件        667  2018-06-07 15:29  九九乘法口诀\九九乘法口诀\Program.cs

     文件       1386  2018-06-07 15:14  九九乘法口诀\九九乘法口诀\Properties\AssemblyInfo.cs

     文件       2457  2018-06-07 15:14  九九乘法口诀\九九乘法口诀\九九乘法口诀.csproj

     文件        896  2018-06-07 15:14  九九乘法口诀\九九乘法口诀.sln

    ..A..H.     15872  2018-06-12 09:37  九九乘法口诀\九九乘法口诀.suo

     目录          0  2018-06-07 15:14  九九乘法口诀\九九乘法口诀\obj\x86\Debug\TempPE

     目录          0  2018-06-07 15:28  九九乘法口诀\九九乘法口诀\obj\x86\Debug

     目录          0  2018-06-07 15:22  九九乘法口诀\九九乘法口诀\bin\Debug

     目录          0  2018-06-07 15:14  九九乘法口诀\九九乘法口诀\obj\x86

     目录          0  2018-06-07 15:14  九九乘法口诀\九九乘法口诀\bin

     目录          0  2018-06-07 15:14  九九乘法口诀\九九乘法口诀\obj

     目录          0  2018-06-07 15:14  九九乘法口诀\九九乘法口诀\Properties

     目录          0  2018-06-07 15:14  九九乘法口诀\九九乘法口诀

     目录          0  2018-06-07 15:14  九九乘法口诀

----------- ---------  ---------- -----  ----

                77587                    22


评论

共有 条评论