摘要: for,new等 遍历循环 取别名的方式最好 #include <iostream> using namespace std; int main() { int v[]{ 12,13,14,15 }; for (auto x : v) { cout << x << endl; } cout << " 阅读全文
posted @ 2022-08-12 10:52 拿受用 阅读(46) 评论(0) 推荐(0) 编辑