#include <iostream> using namespace std; int main() { //for循环 //从数字0打印数字9 for (int i = 0; i < 10; i++) { cout << i << endl; } system("pause"); return 0; }
2023-10-24 21:21:04
#include <iostream> using namespace std; int main() { //for循环 //从数字0打印数字9 for (int i = 0; i < 10; i++) { cout << i << endl; } system("pause"); return 0; }