习题10-1 判断满足条件的三位数 (15 分) #include <stdio.h> #include <math.h> int search(int n); int main() { int number; scanf("%d", &number); printf("count=%d\n", search(number)); system("pause"); return 0; } /* 你的代码将被嵌在这里 */ int search(int n) { int ...
习题10-1 判断满足条件的三位数(15 分) 本题要求实现一个函数,统计给定区间内的三位数中有两位数字相同的完全平方数(如144、676)的个数。 函数接口定义: intsearch(intn ); 其中传入的参数int n是一个三位数的正整数(最高位数字非0)。函数search返回[101,n]区间内所有满足条件的数的个数。 裁判测试程序...
习题10-1 判断满足条件的三位数 本题要求实现一个函数,统计给定区间内的三位数中有两位数字相同的完全平方数(如144、676)的个数。 函数接口定义: int search( int n ); 其中传入的参数 int n 是一个三位数的正整数(最高位数字非0)。函数 search 返回[101, n]区间内所有满足条件的数的个数。 裁判测试...
sz[0] == sz[1] || sz[0] == sz[2]) //判断数组中每位是否互相相等。 { count++; } else if ( sz[1] == sz[2]) { count++; } } } return count; } 原题:题目详情 - 习题10-1 判断满足条件的三位数 (pintia.cn) 还是一样熟练又简单的题目。 答案 答案正确...