紫色秋千


私信TA

用户名:dotcpp0812945

访问量:9

签 名:

加油

等  级
排  名 6850
经  验 1373
参赛次数 0
文章发表 5
年  龄 18
在职情况 学生
学  校 中国矿业大学
专  业 电子信息

  自我简介:

刷题

TA的其他文章

解题思路:

多看几遍就记住了


注意事项:

参考代码:

#include<stdio.h>

#include<stdbool.h>

#include<math.h>

bool judge(int n);

int main(void)

{

    for(int i = 100; i < 1000; i++)

    if(judge(i))

    printf("%d\n", i);

    return 0;

}

bool judge(int n)

{

    int start = n;

    bool flag;

    int sum = 0, position;

    while(n!= 0)

    {

        position = n % 10;

        sum+= pow(position, 3);

        n/= 10;

    }

    if(sum == start)

    flag = true;

    else 

    flag = false;

    return flag;

    

    

}


 

0.0分

0 人评分

  评论区

  • «
  • »