提交时间:2026-03-06 20:06:33

运行 ID: 430962

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