金龙龙


私信TA

用户名:jzx123

访问量:3719

签 名:

等  级
排  名 668
经  验 4005
参赛次数 0
文章发表 4
年  龄 0
在职情况 学生
学  校 温州大学瓯江学院
专  业

  自我简介:

解题思路:





注意事项:





参考代码:

#include<stdio.h>
#include<math.h>

int main()
{
    int n,s = 0;
    int i = 1;
    scanf("%d",&n);
    while(1)
    {

        s += pow(i,3);

        if(s > n)
        {
            printf("%d\n",i-1);
            break;
        }
        else if (s == n)
        {
            printf("%d\n",i);
            break;
        }
        i++;

    }
    return 0;
}

 

0.0分

0 人评分

  评论区

  • «
  • »