以下语句的输出结果是_______。def swap(x,y): x,y=y,x def main(): a,b=5,8 swap(a,b) print(a,b) main() A、58;B、85;C、55;D、88 发布时间:2025-10-23 10:55:28