for循环是常见的代码语句,常规的for循环如下
#include
using namespace std;
int main()
{
int array[] = { 1,1,2,3,5,8...};
//常规for循环
for (int i = 0; i < sizeof(array) / sizeof(array[0]); i++)
{
cout << array[i] <<..." ";
}
cout << endl;
return 0;
}
C++ 11有类型自动推导auto关键字,在for循环中可以使用,上面的数组输出可以写成下面这种形式:...include
using namespace std;
int main()
{
multiset ms = { 1,2,6,2,4,3,3,8 };
//增强for循环输出...= ms.end(); it++)
{
cout << *it << " ";
}
cout << endl;
return 0;
}
用了增强for循环后,代码更简洁了。