Run ID:141989
提交时间:2025-12-29 16:58:16
#include<iostream> using namespace std; int main(){ for(int i=99;i>=11;i--){ if(i%11==0){ cout<<i<<" "; } } }