赞
踩
#include <stdio.h> void _swap(int a, int b) { int temp=a; a=b; b=temp; } int main(void) { int a=5,b<