蓝桥杯2020年第十一届C/C++省赛A组第2题-既约分数
作者:互联网
答案:2481215
#include<iostream>
using namespace std;
bool judge(int x, int y){
if(x>y){
int temp = x;
x = y;
y = temp;
}
if(x ==1&&y!=1)
return true;
for(int i = x; i>1; i--){
if(x%i==0&&y%i==0)
return false;
}
return true;
}
int main()
{
int ans = 0;
for(int i = 1; i<=2020; i++){
for(int j = 1; j <=2020; j++)
if(judge(i,j)) ans++;
}
cout<< ans;
return 0;
}
标签:组第,return,temp,int,既约,蓝桥,&&,true 来源: https://blog.csdn.net/qq_45797026/article/details/115572491