提交时间:2025-08-24 15:14:53
运行 ID: 341264
#include<bits/stdc++.h> using namespace std; int main(){ int s=0,c=0; for(int i=1;i<=99;i++){ s=i/1%10; c=i/10%10; if(c>s&&(c+s)%2==0){ cout<<i<<endl; } } return 0; }