提交时间:2025-01-04 15:54:34
运行 ID: 3946
#include <bits/stdc++.h> using namespace std; int main(){ int n=100; for(int i=1;i<=n;i-=3){ cout<<i<<endl; } }