Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
443586 陈信宇 【C1-8】幸运数字 C++ 通过 100 1 MS 248 KB 190 2026-06-06 14:42:50

Tests(3/3):


#include<bits/stdc++.h> using namespace std; int n; int main(){ cin>>n; int x=n%10; int y=n/10%10; if((x==6||x==8)&&(y==6||y==8)) cout<<"YES"; else cout<<"NO"; return 0; }


测评信息: