摘要: #include <iostream> using namespace std;//使用标准命名空间 //通过指针进行值交换void swap_1(int *a,int *b ){ int c; c = *b; *b = *a; *a = c;} void swap_2(int x,int y ){ 阅读全文
posted @ 2023-05-21 21:44 liuxuechao 阅读(18) 评论(0) 推荐(0) 编辑