两个数、三个数比较大小
摘要:#coding=utf-8 '''两个数、三个数比较大小'''def max2(x,y): if x>y: print ('The max is :'+str(x)) else: print ('The max is :'+str(y)) def max3(x,y,z): if x>y: max2(
阅读全文
posted @ 2018-08-22 16:09
posted @ 2018-08-22 16:09
posted @ 2018-08-09 17:45