摘要: #include<stdio.h>#include<stdlib.h>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 阅读全文
posted @ 2017-03-26 09:17 陈冠希的后花园 阅读(239) 评论(1) 推荐(0) 编辑