1
摘要: C++-打印vector里的元素 代码: #include <stdio.h> #include <stdlib.h> // 包含malloc函数所需头文件 int main() { int size = 5; // vector大小为5 // 动态分配内存空间 int* vec = (int*) 阅读全文
posted @ 2024-01-03 16:02 Bonne_chance 阅读(353) 评论(0) 推荐(0) 编辑
1