摘要: #include<iostream> using namespace std; //打印数据 void printAll(int a[], int n) { for(int i = 0; i < n; i++) { cout << " " << a[i]; } cout << endl; } //冒 阅读全文
posted @ 2023-08-21 00:37 茫茫明明 阅读(34) 评论(0) 推荐(0) 编辑