提交时间:2025-06-01 14:47:27

运行 ID: 325041

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