WXIAOSA


私信TA

用户名:WXIAOSA

访问量:353

签 名:

等  级
排  名 4268
经  验 1730
参赛次数 0
文章发表 1
年  龄 0
在职情况 学生
学  校 不告诉你
专  业

  自我简介:

TA的其他文章

水仙花数问题
浏览:99

解题思路:
输入一个数,分别求出个十百位,使用次方函数与原数比较

_ueditor_page_break_tag_

注意事项:pow函数需要引入<math.h>头文件

参考代码:

#include<iostream>

#include<math.h>

using namespace std;

int main()

{

    int m,ge,shi,bai;

    cin>>m;

    ge=m%10;

    shi=m/10%10;

    bai=m/100;

    if(pow(ge,3)+pow(shi,3)+pow(bai,3)==m)

    {

        count<<"1";

    }else count<<"0";

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »