摘要: #include #include void swap(int *p,int *q) { int *m; *m=*p; *p=*q; *q=*m; } main() { int a,b; scanf("%d,%d",&a,&b); swap(&a,&b); printf("%d,%d",a,b); } 1,2... 阅读全文
posted @ 2017-03-25 16:02 丰科飞 阅读(224) 评论(1) 推荐(0) 编辑