• 2021-04-14
    中国大学MOOC: 以下程序的运行结果为:a=3b=4c=1if a>=b: if a>=c: print(a) else: print(c)else: if b>=c: print(b) else: print(c)