题解 | #牛牛的逻辑运算#
牛牛的逻辑运算
https://www.nowcoder.com/practice/d1f6b7dd048f48c58d974553f0c5a3bc
import sys a = input().split() b = int(a[0]) c = int(a[1]) print(b and c) print(b or c) print(not b) print(not c)
牛牛的逻辑运算
https://www.nowcoder.com/practice/d1f6b7dd048f48c58d974553f0c5a3bc
import sys a = input().split() b = int(a[0]) c = int(a[1]) print(b and c) print(b or c) print(not b) print(not c)
相关推荐
查看23道真题和解析