摘要:
#C语言max宏的进化 ##lv1:shit #define MAX(a, b) a > b ? a : b 问题所在不必多言 ##lv2:角度:参数也可为expr 解: #define MAX(a, b) (a) > (b) ? (a) : (b) bug示例: #include "stdio.h 阅读全文
摘要:
#OO Unit3 Summary Part1:自测数据 单条指令 直接采用随机数的方法生成 ```python def ap(persons,groups): id = random.randint(0, 2147483647) if id not in persons: persons.appe 阅读全文