摘要: https://blog.csdn.net/weixin_43400806/article/details/124229091 创建二维矩阵 #include <vector> int main() { int m; int n; cin >> m >> n; vector<vector<int>> 阅读全文
posted @ 2022-10-12 16:53 笨笨和呆呆 阅读(23) 评论(0) 推荐(0)
摘要: #include <iostream>#include <fstream>#include <string> using namespace std; int main() { //往文件里写 ofstream f; f.open("test.txt",ios::out); f << "aaaaaa 阅读全文
posted @ 2022-10-12 14:49 笨笨和呆呆 阅读(23) 评论(0) 推荐(0)