6-7 统计某类完全平方数 (20 分)

本题要求实现一个函数,判断任一给定整数N是否满足条件:它是完全平方数,又至少有两位数字相同,如144、676等。

函数接口定义:

int IsTheNumber ( const int N );

其中N是用户传入的参数。如果N满足条件,则该函数必须返回1,否则返回0。

裁判测试程序样例:

#include 
#include 

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
int IsTheNumber ( const int N )
{
  int m=0,a[100]={10},n=N,s[11]={0},t=1,i;
  int p=sqrt(N);
  if(N<10)
  return 0;
  if(p*p==N)
  {
    while(n>9)
    {
      a[t]=n%10;
      n=n/10;
      t++;//算一共多少位数。
    }
    a[t]=n;//因为当n从while循环出来时,这个n没有进数组。
    for(i=1;i<=t;i++)
    {
      int x=a[i];
      s[x]++;如果有相同的数则数组会自加。
      if(s[x]>=2)
      {
        return 1;
      }
    }
  }
  return 0;
}

 

 

你可能感兴趣的:(c语言)