摘要: #include<iostream> using namespace std; /*交换*/ void swap(int *x,int *y){ int temp; temp=*x; *x=*y; *y=temp; } /*打印*/ void print(int *a,int length){ in 阅读全文
posted @ 2021-04-12 09:14 zhulu506 阅读(73) 评论(0) 推荐(0) 编辑