1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#include <iostream>// 输出流库 using namespace std;//使用标准命名空间 //课程:5.5 流程结构 for循环 int main() { for (int i=0,j=10;i<j;i++) { cout << i << endl; } system("pause");// 控制台暂停,等待下一步操作 return 0;// 结束返回值:0 } |
05.5 C++for循环
未经允许不得转载:Ai分享 » 05.5 C++for循环