美文网首页
用mathematica计算n进制的加法表和乘法表

用mathematica计算n进制的加法表和乘法表

作者: chao2024 | 来源:发表于2019-06-04 13:46 被阅读0次

    加法表
    f[n_] := Table[ Column[Table[IntegerDigits[i + j, n], {j, 0, n - 1}]], {i, 0, n - 1}]
    乘法表
    g[n_] := Table[ Column[Table[IntegerDigits[i j, n], {j, 0, n - 1}]], {i, 0, n - 1}]

    相关文章

      网友评论

          本文标题:用mathematica计算n进制的加法表和乘法表

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