1375为什么是通过83%
我要提问
发布于2024年1月22日 18:17
阅读数 573
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
int flag;
int a[10000];
int count=0;
int k=0;
while(cin>>n){
for(int i=2;i<=n-1;i++){
flag=1;//初始为素数
for(int j=2;j<=sqrt(i);j++){
if(i%j==0){
flag=0;
break;
}
}
if(flag){
&n...
登录后发布评论
if(count==0){
cout<<"1";
}
这句有问题吧,找不到输出-1不是1