美团 0817笔试
最大公约数那道题,为什么这个代码不对呀。举例114的答案是112.因为114与112的最大公约数是2,2是素数。
#include<bits/stdc++.h>
using namespace std;
int gcd(int a,int b){
if(a%b==0) return b;
else{return gcd(b,a%b);}
}
bool ispre(int a){
if(a==1 ||a==4) return false;
if(a==2 || a==3) return true;
for(int i=2;i<a;i++){
if(a%i==0) return false;
}return true;
}
int main(){
int t;cin>>t;
while(t--){
int n;cin>>n;
int m;
for(m=n;m>=2;m--){
//if(n%m==0 && ispre(m)) {cout<<m<<endl;break;}
int g=gcd(n,m);
if(ispre(g)){cout<<m<<endl;break;}
}
}
}
#include<bits/stdc++.h>
using namespace std;
int gcd(int a,int b){
if(a%b==0) return b;
else{return gcd(b,a%b);}
}
bool ispre(int a){
if(a==1 ||a==4) return false;
if(a==2 || a==3) return true;
for(int i=2;i<a;i++){
if(a%i==0) return false;
}return true;
}
int main(){
int t;cin>>t;
while(t--){
int n;cin>>n;
int m;
for(m=n;m>=2;m--){
//if(n%m==0 && ispre(m)) {cout<<m<<endl;break;}
int g=gcd(n,m);
if(ispre(g)){cout<<m<<endl;break;}
}
}
}
全部评论
for初始化m=n。。。。。。
相关推荐
09-25 16:19
门头沟学院 前端开发其它 只会说收到好的:身份的转变总是让人百感交集,都经历过这个阶段。我清楚我走在校园里,但是也很清楚不再属于这里了。看着新生在路上欢笑 讨论总是会怀念,可以让自己短暂回忆但是要继续向前走呀 共勉加油
点赞 评论 收藏
分享
10-11 15:56
南京邮电大学 射频工程师 点赞 评论 收藏
分享