九乘九乘法口诀

Posted 淡淡的烦恼

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了九乘九乘法口诀相关的知识,希望对你有一定的参考价值。

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 
 6 namespace _9x9乘法口诀
 7 {
 8     class Program
 9     {
10         static void Main(string[] args)
11         {
12             int i, j;
13             /*可以没有注释的部分
14             int[,] a = new int[9, 9];
15             for(i=0;i<9;i++)
16                 for (j = 0; j <= i; j++)
17                 {
18                     a[i, j] = (i + 1) * (j + 1);
19                 }
20             */
21             for (i = 1; i <= 9; i++)
22             {
23                 for (j = 1; j <= i; j++)
24                 { 
25                     Console.Write(i + "*" + j + "=" + i * j + \t);
26                 }
27             Console.WriteLine();
28             }
29             Console.ReadLine();  
30         }
31     }
32 }

 

以上是关于九乘九乘法口诀的主要内容,如果未能解决你的问题,请参考以下文章

汇编语言程序 99乘法表 急求

第二次冲刺总结

用Java代码实现输出乘法口诀表有几种方法?

JS乘法口诀表(一行代码)

python九九乘法口诀表

如何用python做出倒写乘法口诀表?