数学吧 关注:869,885贴子:8,667,840
  • 19回复贴,共1


来自Android客户端1楼2016-11-18 22:05回复
    0,0,3次根号30。
    0,0,3次根号33。


    IP属地:广东来自Android客户端4楼2016-11-18 22:24
    收起回复
      莫名想到费马大定理


      5楼2016-11-18 22:52
      收起回复
        无整数解


        IP属地:福建来自手机贴吧9楼2016-11-18 23:02
        回复
          噗。。


          来自Android客户端13楼2016-11-18 23:11
          回复
            无整数解吧,莫名想到丢番图方程


            IP属地:陕西来自Android客户端14楼2016-11-18 23:29
            回复
              没有整数解


              IP属地:上海17楼2016-11-18 23:42
              回复
                #include "stdafx.h"
                #include <iostream>
                #include <cmath>
                #define S 30
                #define RANGE 1000
                int main()
                {
                long long int a, b, c;
                for (a = - RANGE; a <= RANGE; ++a)
                {
                for (b = a; b <= RANGE; ++b)
                {
                for (c = b; c <= RANGE; ++c)
                {
                if (a * a * a + b * b * b + c * c * c == S)
                std::cout << a << "," << b << "," << c << std::endl;
                }
                }
                }
                return 0;
                }
                答案是30或33在[-1000, 1000]都没有整数解


                18楼2016-11-19 12:49
                收起回复
                  29的话除了 1,1,3 倒还有
                  -233,-69,235
                  -20,13,18
                  -3,-2,4


                  19楼2016-11-19 12:51
                  收起回复
                    30的有一组,(−283059965, −2218888517, 2220422932)
                    33的不知道,有可能没有。
                    上述是我搬运的
                    不过我没有验证


                    IP属地:上海来自Android客户端20楼2016-11-21 07:54
                    收起回复