Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
33334 lnx 判断一个数是否为质数 C++ 通过 0 MS 248 KB 186 2023-12-08 19:01:44

Tests(1/1):


#include<iostream> using namespace std; int main() { int a; cin>>a; for(int i=2;i<a;i++) { if(a%i==0) { cout<<"no"; break; } } cout<<"yes"; return 0; }


测评信息: