摘要:
#include<iostream> using namespace std; #include<string> //结构体数组 struct student { string name; int age; float score; }; int main() { struct student st 阅读全文
摘要:
#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++) { 阅读全文