眯眯眼大雁

文章
5
资源
0
加入时间
3年2月3天

2020-03-04

#include <stdio.h>#include <stdlib.h>#include <string.h>void change2(int *a, int *b){int temp;temp = *a;*a = *b;*b = temp;}void change(int *a, int *b, int *c){if(*a < ...