摘要: 类似于这个例子 #include <iostream> using namespace std; void sw(int a,int b) { int tmp=a; a=b; b=tmp; } void sw1(int* a,int* b) { int tmp; tmp=*a; *a=*b; *b= 阅读全文
posted @ 2022-01-06 11:04 Wangtn 阅读(385) 评论(0) 推荐(0) 编辑