玩命火

文章
5
资源
0
加入时间
2年10月17天

C++ for循环的几种使用方法

普通的for循环for(int n = 0; n < 50; ++n) std::cout << n << '\n';用于容器的for循环for(auto it=list.begin(); it!=list.end(); ++it) cout << *it << '\n'; 简易for循环for each(auto...