天天看点

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

本题要求实现一个函数,判断任一给定整数

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;
}
           

 代码实现:

int IsTheNumber(const int N)
{
    int n = N;
    int m = (int)sqrt(n);
    int i = 0;
    int a[10]={0};
    while (n)
    {
        i = n % 10;//
        a[i]++;//核心在这两条语句
        n /= 10;
    }
    if (N == m * m)
    {
        for (i = 0; i < 10; i++)
        {
            if (a[i] > 1)
            {
                return 1;
            }
        }
    }
    else
        return 0;
}
           

运行结果:

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

继续阅读