Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
7760 刘逸杭 判断质数(使用while循环) C++ Accepted 0 MS 264 KB 244 2025-05-17 19:39:36

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int n,i=2; cin>>n; while(i*i<=n){ if(n%i==0){ cout<<"No"; return 0; } i++; } cout<<"Yes"; return 0; }