提交时间:2025-02-16 19:24:33
运行 ID: 309350
#include<bits/stdc++.h> using namespace std; int main(){ int i; for(i=1000;i<=9999;i++){ if(i/1000%10==i/10%10&&i/100%10==i%10&&i%2==1) cout<<i; } return 0; }