摘要:
基础 for循环: for i in range(n): 循环n次, i=0 ~ n-1 for i in range(m, n): 循环n-m次,i= m ~ n-1 数组 初始化数组: arr = [] 向数组添加元素: arr.append('Hello') 从数组删除元素: arr.remo 阅读全文
posted @ 2023-07-21 19:18
风中奔跑
阅读(26)
评论(0)
推荐(0)
摘要:
读取二进制文件示例代码: #include <iostream> #include <vector> #include <fstream> std::vector<char> ReadFile(const std::string& fileName) { std::ifstream f(fileNa 阅读全文
posted @ 2023-07-21 03:10
风中奔跑
阅读(188)
评论(0)
推荐(0)