2019年4月23日
摘要: #include<iostream> using namespace std; void Swap(int *a,int *b) { int t; t=*a; *a=*b; *b=t; } struct person { char name[20]; char sex[10]; }; void sh 阅读全文
posted @ 2019-04-23 19:56 redOrange01 阅读(115) 评论(0) 推荐(0) 编辑