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