习题10-1 判断满足条件的三位数 (15 分)

Posted JamesGordan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了习题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 count = 0;
    int a1, a2, a3;
    for (int i = 11; i*i < n; i++) 
        a1 = i * i % 10;
        a2 = i * i / 10 % 10;
        a3 = i * i / 100;
        if (a1 == a2 || a1 == a3 || a2 == a3)
            count++;
    
    return count;

 

以上是关于习题10-1 判断满足条件的三位数 (15 分)的主要内容,如果未能解决你的问题,请参考以下文章

[PTA]实验10-2 判断满足条件的三位数

判断满足条件的三位数

一个三位数既是3的倍数,又是5的倍数。这样的三位数最小是啥

7-16 求符合给定条件的整数集(15 分)

python 习题

python习题练习