A、第17行:&a[i], &b[i]第52行:temp = *x第53行:*x = *y第54行:*y = temp
B、
第17行:a[i], b[i]
第52行:temp = *x
第53行:*x = *y
第54行:*y = temp
C、
第17行:&a[i], &b[i]
第52行:*temp = *x
第53行:*x = *y
第54行:*y = *temp
D、
第17行:a[i], b[i]
第52行:temp = x
第53行:x = y
第54行:y = temp
喵查答案:第17行:&a[i], &b[i]第52行:temp = *x第53行:*x = *y第54行:*y = temp