摘要: 编写一个两数交换函数swap,具体代码如下: #include<stdio.h> void swap(int *p1,int *p2) { int temp; temp = *p1; *p1 = *p2; *p2= temp; //printf("p1=%d,p2=%d,temp=%d\n",p1, 阅读全文
posted @ 2020-02-05 23:22 m0w3n 阅读(845) 评论(0) 推荐(0) 编辑