Run ID:91949
提交时间:2024-09-26 10:58:23
#include <bits/stdc++.h> using namespace std; int main() { for(int z=3;z<=100;){ cout<<z<<endl; z=z+3; } return 0; }