提交时间:2026-05-07 16:55:45

运行 ID: 439445

#include<bits/stdc++.h> using namespace std; int main(){ int i=10; while(i<=99){ int g=i/1%10,s=i/10%10; if(s>g&&(s+g)%2==0){ cout<<i<<endl; } i++; } return 0; }