Run ID:150203
提交时间:2026-03-23 17:09:56
#include <iostream> using namespace std; int main(){ //1-100 7的倍数 for(int i=20;i>=2;i=i-2){ cout<<i<<endl; } }