Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
112058 刘明沅 13判断质数 C++ Wrong Answer 0 MS 268 KB 254 2025-03-08 12:55:00

Tests(0/10):


Code:

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


Run Info:

------Input------
157
------Answer-----
Yes
------Your output-----
yes