You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python-exercise
Python求最大数:
a = int(input('输入1为:'))
b = int(input('输入2为: '))
c = int(input('输入3为:'))
if a >= b:
big=a
else:
big=b
if c >= big:
big=c
print('最大值为:',big)