提交时间:2026-05-30 18:59:46

运行 ID: 442891

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