算法-99乘法表

Posted

tags:

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

99乘法表
  1. //99乘法表的程序
  2. int[] num = new int[10];
  3. for (int i = 0; i < 10; i++)
  4. {
  5. num[i] = i;
  6. }
  7. Console.ForegroundColor = ConsoleColor.Red;
  8. for (int i = 0; i < 10; i++)
  9. {
  10. for (int j = 0; j < i; j++)
  11. {
  12. Console.Write("{0}X{1}={2} ", num[i], num[j], num[i] * num[j]);
  13. if (num[i] * num[j] < 10)
  14. {
  15. Console.Write(" ");
  16. }
  17. }
  18. Console.WriteLine();
  19. }
  20. Console.ReadKey();





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

在网页中打印一个99乘法表--JavaScript描述

C语言的99乘法表

python99乘法表多了个空格

python中用代码实现99乘法表

一行Python代码实现99乘法表

c语言求用for循环写99乘法表的代码 最后简单一点的 谢谢