码迷,mamicode.com
首页 > 其他好文 > 详细

PTA基础编程题目集6-7 统计某类完全平方数 (函数题)

时间:2019-01-15 17:53:25      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:turn   div   相同   block   print   class   接口   定义   span   

本题要求实现一个函数,判断任一给定整数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

解题思路:


 1 int IsTheNumber ( const int N )
 2 {
 3     int x,m;
 4     x=(int)sqrt(N);
 5     m = x*x;
 6     if (m == N)
 7     {
 8         int num[10]={0};
 9         int i;
10         while(m>0)
11         {
12             for(i = 0;i<=9;i++)
13             {
14                 if (m%10 == i)
15                 {
16                     num[i]=num[i]+1;
17                     if (num[i]==2)
18                     {
19                         return 1;
20                     }
21                 }
22             }
23         m=m/10;
24         }
25     }
26     return 0;
27 }

 


PTA基础编程题目集6-7 统计某类完全平方数 (函数题)

标签:turn   div   相同   block   print   class   接口   定义   span   

原文地址:https://www.cnblogs.com/pxy-1999/p/10273133.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!