Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
148991 吴悠 判断质数 C++ 编译错误 0 0 MS 0 KB 168 2024-05-25 15:27:25

Tests(0/0):


#include<iostream> #include<cmath> using namespace std; bool judge(int n){ for(int i=2;i<=sqrt(n);i++){ if(n%i==0){ return false; } } return true; }


测评信息: