本题要求实现一个函数,判断任一给定整数N是否满足条件:它是完全平方数,又至少有两位数字相同,如144、676等。
函数接口定义:
int IsTheNumber ( const int N );
其中N是用户传入的参数。如果N满足条件,则该函数必须返回1,否则返回0。
裁判测试程序样例:
#include <stdio.h>
#include <math.h>
int IsTheNumber ( const int N );
int main()
{
int n1, n2, i, cnt;
scanf("%d %d", &n1, &n2);
cnt = 0;
for ( i=n1; i<=n2; i++ ) {
if ( IsTheNumber(i) )
cnt++;
}
printf("cnt = %d\n", cnt);
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
105 500
输出样例:
cnt = 6
写题思路:一开始想的是用for循环把i的平方判断是否符合N,但是觉得分值这么大,要是有时间限制咋办,肯定有简便的方式,搜了一下其它方式求平方和,结果还真找到了,原来强制转换类型还能这么用。
代码如下:
int IsTheNumber ( const int N ){
int hash[10000]={0},i=0,j;
j=N;
if(N<0)
return 0;
while(j!=0){
hash[j%10]++;
if(hash[j%10]>=2){
i=1;
break;
}
j=j/10;
}
j=sqrt(N)==(int)sqrt(N);
if(j&&i){
return 1;
}
return 0;
}