爱撒娇铅笔

文章
6
资源
0
加入时间
3年0月21天

C++增强for循环

for循环是常见的代码语句,常规的for循环如下#include <iostream>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] << &qu