Run ID:154406
提交时间:2026-05-30 13:48:22
#include <bits/stdc++.h> using namespace std; int main() { // 初始化i=0,条件i<=30,每次自增3 for (int i = 0; i <= 30; i += 3) { cout << i << " "; } return 0; }