对输入的两个整数按大小顺序输出。用函数处理,而且用指针类型的数据作函数参数。 int main(){ void swap(int *p1,int *p2);//声明swap函数 int a,b; int *x,