Commit e3bc7b8c by BellCodeEditor

auto save

parent 653049ef
Showing with 30 additions and 0 deletions
# n=int(input('请输入体重:'))
# m=float(input('请输入身高:'))
# BMI=n/(m*m)
# if BMI>=28:
# print('肥胖')
# elif 24<=BMI<=27.9:
# print('过重')
# elif 18.5<=BMI<=23.9:
# print('正常')
# else:
# print('偏瘦')
# num=99
# pnum=int(input("玩家输入的数字:"))
# if pnum==num:
# print("sfsf")
# elif pnum>num:
# print('dfs')
# else:
# print('gsgd')
# key='a'
# for key in 'good':
# if key=='d':
# print(key)
# for i in range(1,101,2):
# print(i)
for j in range(1,10):
for i in range(1,j+1):
print(i,'*',j,'=',i*j,end='\t')
print(' ')
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment