赞
踩
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b,c,*p1,*p2,*p3;
scanf("%d%d%d",&a,&b,&c);
p1=&a;
p2=&b;
p3=&c;
exchange(p1,p2,p3);
printf("%d%d%d\n",a,b,c);
return 0;
}
void swap(int
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。