6-7 统计某类完全平方数
题目
https://pintia.cn/problem-sets/14/problems/739
本题要求实现一个函数,判断任一给定整数N
是否满足条件:它是完全平方数,又至少有两位数字相同,如144、676等。
程序样例
1 |
|
关键代码
1 | int IsTheNumber ( const int N ){ |
https://pintia.cn/problem-sets/14/problems/739
本题要求实现一个函数,判断任一给定整数N
是否满足条件:它是完全平方数,又至少有两位数字相同,如144、676等。
1 | #include <stdio.h> |
1 | int IsTheNumber ( const int N ){ |