摘要: #include<iostream> using namespace std; #include<string> //结构体数组 struct student { string name; int age; float score; }; int main() { struct student st 阅读全文
posted @ 2020-03-10 23:24 Jackie_Wang 阅读(2681) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; void bubbleArr(int *arr,int len) { for (int i = 0; i < len - 1; i++) { for (int j = 0; j < len - i - 1; j++) { 阅读全文
posted @ 2020-03-10 22:52 Jackie_Wang 阅读(1650) 评论(0) 推荐(0) 编辑