摘要: #include <iostream> #include <string> #include <windows.h> using namespace std; void swap(int* a, int* b) { int tmp = *a; *a = *b; *b = tmp; } int mai 阅读全文
posted @ 2022-10-08 16:52 wshidaboss 阅读(21) 评论(0) 推荐(0) 编辑