摘要: #include<stdio.h> int main() {int swap(int *x,int *y);//指明swap函数 int a,b;//定义整型变量 scanf("%d,%d",&a,&b); int *x,*y;//定义指针变量 x=&a; y=&b;//指针x,y分别指向a,b s 阅读全文
posted @ 2017-03-22 17:45 月光航线 阅读(122) 评论(0) 推荐(0) 编辑