摘要: a = a + b b = a - b a = a - b 阅读全文
posted @ 2020-09-29 10:04 下_冰雹 阅读(64) 评论(0) 推荐(0)
摘要: // c语言条件运算符 int temp = (a > b ? a : b); int max = (temp > c ? temp : c); # python条件运算符 temp = a > b if a else b max = temp > c if temp else c 阅读全文
posted @ 2020-09-29 09:41 下_冰雹 阅读(111) 评论(0) 推荐(0)