题解 | #牛妹的烦恼#
牛妹的烦恼
https://www.nowcoder.com/practice/e7e616bf2f00406b80b0d41e5368ee93
a,b,c=map(int,input().split(" ")) if a>b and a>c: print('Python') elif b>a and a>c: print('Java') else: print('C')
运用逻辑运算形成判断条件
牛妹的烦恼
https://www.nowcoder.com/practice/e7e616bf2f00406b80b0d41e5368ee93
a,b,c=map(int,input().split(" ")) if a>b and a>c: print('Python') elif b>a and a>c: print('Java') else: print('C')
运用逻辑运算形成判断条件
相关推荐