Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
148812 A班卞定熙 判断质数 C++ 解答错误 60 0 MS 248 KB 168 2024-05-25 14:56:48

Tests(3/5):


#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(a%2==0 and a%3==0 and a%5==0){ cout<<"No"; } else{ cout<<"Yes"; } return 0; }


测评信息: