Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
96635 王煜鑫 判断质数(使用while循环) C++ Accepted 1 MS 272 KB 301 2024-11-09 11:30:16

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int a,i=2; cin>>a; while(i<a){ if(a%i==0){ cout<<"No"; return 0; } i++; } cout<<"Yes"; }