Loading

摘要: C++二维数组声明与初始化的示例 #include <iostream> #include <string> using namespace std; int main() { int **a = new int *[10]; char **c = new char *[10]; string *s 阅读全文
posted @ 2020-06-08 19:52 WindSnowLi 阅读(29) 评论(0) 推荐(0) 编辑