首页 > 其他 > 详细

99乘法表中文版

时间:2019-09-27 01:04:41      阅读:68      评论:0      收藏:0      [点我收藏+]

源代码

a = ["" ,"", "", "", "", "", "", "", "", ""]
for i in range(1, 10):
    for j in range(1, i+1):
        print(a[j], end="")
        print(a[i], end="")
        if i * j < 10:
            print("", end="")
            print(a[i*j], end="  ")
        else:
            t1 = i * j // 10
            t2 = i * j % 10
            if t1 == 1 and t2 == 0:
                print("一十", end="  ")
            else:
                if t1 > 1:
                    print(a[t1], end="")
                print("", end="")
                print(a[t2], end="")
                if t1 == 1:
                    print("  ", end="")
                if t2 == 0:
                    print("  ", end="")
        if i == j:
            print("")
        else:
            print("", end="\t")

运行结果

技术分享图片

 

99乘法表中文版

原文:https://www.cnblogs.com/Chaosliang/p/11595030.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!