摘要: #include int main() { void swap(int *p,int *q); int a,b,*p1,*p2; scanf( "%d%d",&a,&b); p1=&a;p2=&b; if(a<b) swap(p1,p2); printf("\n%d,%d\n",a,b); printf("\n"); } void s... 阅读全文
posted @ 2017-03-22 18:56 心动&动心 阅读(57) 评论(0) 推荐(0) 编辑