Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
439039 顾鑫辰 【C1-8】幸运数字 C++ 通过 100 2 MS 252 KB 235 2026-05-04 14:38:27

Tests(3/3):


#include <iostream> using namespace std; int main(){ int n; cin>>n; int s=n/10%10; int g=n/1%10; if((s==6||s==8)&&(g==6||g==8)){ cout<<"YES"; }else{ cout<<"NO"; } return 0; }


测评信息: