摘要: # # j = 1 # while j < 10: # i = 1 # while i <= j: # print('{}*{}={}'.format(i, j, i * j), end='\t') # i += 1 # print() # j += 1 for i in range(1, 10): for j in ra... 阅读全文
posted @ 2018-11-14 19:52 nester_liz 阅读(138) 评论(0) 推荐(0)
摘要: today = int(input("请输入今天是星期几:")) if today==1: print('周一:跑步 ') elif today==2: print('周二:游泳 ') elif today==3: print('周三:健身房') elif today==4: print('周四:动感单车') elif today==5: print('... 阅读全文
posted @ 2018-11-14 17:37 nester_liz 阅读(153) 评论(0) 推荐(0)
摘要: 请输入半径r,最多支持两位小数: 5.6666半径未5.67,的圆的面积s = 100.827半径为5.6666,的圆的面积s = 100.8265164584 阅读全文
posted @ 2018-11-14 11:30 nester_liz 阅读(160) 评论(0) 推荐(0)