欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

找出100至x(x≤999)之间各位上的数字之和为15的所有整数,然后输出;符合条件的整数个数作为函数值返回。

时间:2023-06-03

#include  
int fun(int  x)
{
    int  n, s1, s2, s3, t;

    n = 0;
    t = 100;

    while (t <= x)
    {
        s1 = t % 10;  s2 = (t / 10) % 10;  s3 = t / 100;
        if (s1 + s2 + s3 == 15)
        {
            printf("%d ", t);
            n++;
        }

        t++;
    }
    return n;
}
int main()
{
    int  x = -1;
    while (x > 999 || x < 100)
    {
        printf("Please input(100     }
    printf("nThe result is: %dn", fun(x));
    return 0;
}

}
 

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。