2017年9月2日
摘要: python的99乘法表 num1=1 while num1<=9 : num2 = 1 while num2 <=num1 : print (str(num2)+"X"+str(num1)+"="+str(num2*num1),end="\t") num2+=1 num1+=1 print() p 阅读全文
posted @ 2017-09-02 20:19 王羿贺 阅读(812) 评论(0) 推荐(0)