#include <iostream> using namespace std; int main() { //for循环 //从数字0打印数字9 for (int i = 0; i < 10; i++) { cout << i << endl; } system("pause"); return 0; }
034.程序流程结构-循环结构-for循环
原文:https://www.cnblogs.com/ceovs/p/15225781.html