Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
439445 陈梓霖 【C2-3】输出满足条件的整数1 C++ 通过 100 2 MS 244 KB 188 2026-05-07 16:55:45

Tests(1/1):


#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; }


测评信息: