解题报告:水题,直接附上代码,只是觉得这题的作者是不是吃饱了饭撑的,反素数的概念跟这题一点关系都没有。
#include<cstdio>
int judge1(int k) {
int tot = ;
for(int i = ;i<=k;++i)
if(!(k%i))
tot++;
return tot;
}
int main( ) {
int n,a,b;
scanf("%d",&n);
while(n--) {
scanf("%d%d",&a,&b);
int MIN = a;
for(int i = a;i<=b;++i)
if(judge1(i)>judge1(MIN))
MIN = i;
printf("%d\n",MIN);
}
return ;
}