Skip to content
0
  • Categories
  • 讨论
  • Recent
  • Tags
  • Popular
  • Top
  • Users
  • Categories
  • 讨论
  • Recent
  • Tags
  • Popular
  • Top
  • Users
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Zephyr)
  • No Skin
Collapse
JIKE社区
  1. 首页
  2. 讨论区
  3. 技术专区
  4. 本社区终于可以向 @ChatGPT 提问了!

本社区终于可以向 @ChatGPT 提问了!

Scheduled Pinned Locked Moved 技术专区
11.5k Posts 326 Posters 49.5m Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P peng111

    @ChatGPT 使用Python语言,给定x和n的值,求sin(x),公式如下
    siin x=x-x立方/3!+x的五次方/5!一直到+(-1)的n-1次方*x的2n-1次方/(2n-1)!解释

    ChatGPTC Offline
    ChatGPTC Offline
    ChatGPT
    wrote on last edited by
    #1181

    peng111说:

    使用Python语言,给定x和n的值,求sin(x),公式如下
    siin x=x-x立方/3!+x的五次方/5!一直到+(-1)的n-1次方*x的2n-1次方/(2n-1)!解释

    :n为阶乘

    import math

    x = int(input('输入x值:'))
    n = int(input('输入n值:'))

    result = x
    for i in range(1, n):
    result += ((-1)(i+1))*(x(2i+1))/math.factorial(2i+1)

    print("sin(x) = %.2f" %result)

    帖子内容中 @ChatGPT(注意前后空格,发帖后名称变色才行)。必须@才会回答

    1 Reply Last reply
    0
    • P peng111

      @ChatGPT 使用java语言,给定x和n的值,求sin(x),公式如下
      siin x=x-x立方/3!+x的五次方/5!一直到+(-1)的n-1次方*x的2n-1次方/(2n-1)!解释

      ChatGPTC Offline
      ChatGPTC Offline
      ChatGPT
      wrote on last edited by
      #1182

      peng111说:

      使用java语言,给定x和n的值,求sin(x),公式如下
      siin x=x-x立方/3!+x的五次方/5!一直到+(-1)的n-1次方*x的2n-1次方/(2n-1)!解释

      :

      public class Sine {
      public static double calcSine(double x, int n) {
      double result = x;
      int sign = -1;
      for (int i = 2; i <= n; i++) {
      sign *= -1;
      result += sign * Math.pow(x, 2 * i - 1) / factorial(2 * i - 1);
      }
      return result;
      }

      public static int factorial(int n) {
          int result = 1;
          for (int i = 1; i <= n; i++) {
              result *= i;
          }
          return result;
      }
      

      }

      帖子内容中 @ChatGPT(注意前后空格,发帖后名称变色才行)。必须@才会回答

      1 Reply Last reply
      0
      • P Offline
        P Offline
        peng111
        🍌
        wrote on last edited by
        #1183

        @ChatGPT 越南产27.5鞋号对应中国是多大号

        ChatGPTC 1 Reply Last reply
        0
        • P peng111

          @ChatGPT 越南产27.5鞋号对应中国是多大号

          ChatGPTC Offline
          ChatGPTC Offline
          ChatGPT
          wrote on last edited by
          #1184

          peng111说:

          越南产27.5鞋号对应中国是多大号

          ?

          根据不同品牌的尺码转换表,越南产27.5鞋号可能相当于中国的41码或42码。

          帖子内容中 @ChatGPT(注意前后空格,发帖后名称变色才行)。必须@才会回答

          1 Reply Last reply
          0
          • P Offline
            P Offline
            peng111
            🍌
            wrote on last edited by
            #1185

            @ChatGPT lllustrator2020中的什么工具组能够使对象产生特殊的变形效果

            ChatGPTC 1 Reply Last reply
            0
            • P peng111

              @ChatGPT lllustrator2020中的什么工具组能够使对象产生特殊的变形效果

              ChatGPTC Offline
              ChatGPTC Offline
              ChatGPT
              wrote on last edited by
              #1186

              peng111说:

              lllustrator2020中的什么工具组能够使对象产生特殊的变形效果

              形状变形工具组(Shape Builder Tool)。此工具组可以用来合并对象、拆分对象、变形对象以及擦除多余轮廓,以便达到更多特殊变形效果。

              帖子内容中 @ChatGPT(注意前后空格,发帖后名称变色才行)。必须@才会回答

              1 Reply Last reply
              0
              • ? This user is from outside of this forum
                ? This user is from outside of this forum
                Guest
                wrote on last edited by
                #1187

                用c语言实现输入两个正整数,用辗转相除法求最大公约数。@ChatGPT

                1 Reply Last reply
                0
                • P Offline
                  P Offline
                  peng111
                  🍌
                  wrote on last edited by
                  #1188

                  @ChatGPT 四开门冰箱最小的能装多少斤东西。最大的能装多少东西。

                  ChatGPTC 1 Reply Last reply
                  0
                  • ? This user is from outside of this forum
                    ? This user is from outside of this forum
                    Guest
                    wrote on last edited by
                    #1189

                    @ChatGPT 用c语言实现输入两个正整数,用辗转相除法求最大公约数。

                    ChatGPTC 1 Reply Last reply
                    0
                    • ? Guest

                      @ChatGPT 用c语言实现输入两个正整数,用辗转相除法求最大公约数。

                      ChatGPTC Offline
                      ChatGPTC Offline
                      ChatGPT
                      wrote on last edited by
                      #1190

                      guest说:

                      用c语言实现输入两个正整数,用辗转相除法求最大公约数。

                      #include
                      int main()
                      {
                      int a, b, c; //定义变量
                      scanf("%d%d", &a, &b); //输入正整数
                      while (b != 0) //判断b是否不等于0
                      {
                      c = a % b; //求余
                      a = b; //将b赋给a
                      b = c; //将c赋给b
                      }
                      printf("%d", a); //输出最大公约数
                      return 0;
                      }

                      帖子内容中 @ChatGPT(注意前后空格,发帖后名称变色才行)。必须@才会回答

                      1 Reply Last reply
                      0
                      • P peng111

                        @ChatGPT 四开门冰箱最小的能装多少斤东西。最大的能装多少东西。

                        ChatGPTC Offline
                        ChatGPTC Offline
                        ChatGPT
                        wrote on last edited by
                        #1191

                        peng111说:

                        四开门冰箱最小的能装多少斤东西。最大的能装多少东西。

                        四开门冰箱的容量取决于具体型号。一般来说,最小的四开门冰箱容量约为200升,可以装约20斤的东西;最大的四开门冰箱容量约500升,可以装约50斤的东西。

                        帖子内容中 @ChatGPT(注意前后空格,发帖后名称变色才行)。必须@才会回答

                        1 Reply Last reply
                        0
                        • P Offline
                          P Offline
                          peng111
                          🍌
                          wrote on last edited by
                          #1192

                          @ChatGPT 陈航君在核雕界什么级别

                          ChatGPTC 1 Reply Last reply
                          0
                          • P peng111

                            @ChatGPT 陈航君在核雕界什么级别

                            ChatGPTC Offline
                            ChatGPTC Offline
                            ChatGPT
                            wrote on last edited by
                            #1193

                            peng111说:

                            陈航君在核雕界什么级别

                            ?

                            陈航君是国内著名的核雕艺术家,他在核雕界处于非常高的级别。他曾荣获“中国核雕艺术十大杰出贡献奖”,是“中国核雕界杰出贡献艺术家”、“中国核雕界十大杰出贡献奖”的获得者,是中国核雕界的领军人物。

                            帖子内容中 @ChatGPT(注意前后空格,发帖后名称变色才行)。必须@才会回答

                            1 Reply Last reply
                            0
                            • P Offline
                              P Offline
                              peng111
                              🍌
                              wrote on last edited by
                              #1194

                              @ChatGPT 在野外工作中,那些水平角可以用经纬仪测量

                              ChatGPTC 1 Reply Last reply
                              0
                              • P peng111

                                @ChatGPT 在野外工作中,那些水平角可以用经纬仪测量

                                ChatGPTC Offline
                                ChatGPTC Offline
                                ChatGPT
                                wrote on last edited by
                                #1195

                                peng111说:

                                在野外工作中,那些水平角可以用经纬仪测量

                                出来。经纬仪是一种测量工具,用来测量和标记地理坐标,它可以测量和标记某一地点的方位角,也可以用来测量水平角。经纬仪可以精确地测量水平角,以便更准确地定位某一点,以便进行后续的工作。

                                帖子内容中 @ChatGPT(注意前后空格,发帖后名称变色才行)。必须@才会回答

                                1 Reply Last reply
                                0
                                • ? This user is from outside of this forum
                                  ? This user is from outside of this forum
                                  Guest
                                  wrote on last edited by
                                  #1196

                                  @ChatGPT 1+1为什么等于2

                                  ChatGPTC 1 Reply Last reply
                                  0
                                  • P Offline
                                    P Offline
                                    peng111
                                    🍌
                                    wrote on last edited by
                                    #1197

                                    @ChatGPT AVERAGE(D2:D6)等于多少,为什么

                                    ChatGPTC 1 Reply Last reply
                                    0
                                    • ? Guest

                                      @ChatGPT 1+1为什么等于2

                                      ChatGPTC Offline
                                      ChatGPTC Offline
                                      ChatGPT
                                      wrote on last edited by
                                      #1198

                                      guest说:

                                      1+1为什么等于2

                                      ?

                                      1+1等于2是因为“1”和“1”相加,每个数字都有其自身的值,而“2”的值正好是两个“1”的和。

                                      帖子内容中 @ChatGPT(注意前后空格,发帖后名称变色才行)。必须@才会回答

                                      1 Reply Last reply
                                      0
                                      • P peng111

                                        @ChatGPT AVERAGE(D2:D6)等于多少,为什么

                                        ChatGPTC Offline
                                        ChatGPTC Offline
                                        ChatGPT
                                        wrote on last edited by
                                        #1199

                                        peng111说:

                                        AVERAGE(D2:D6)等于多少,为什么

                                        AVERAGE(D2:D6) 等于 5.5。因为这个函数会计算给定单元格范围内所有单元格中的数字的平均值,而 D2:D6 范围内的数字分别为 1、2、3、4、6,它们的平均值是 5.5。

                                        帖子内容中 @ChatGPT(注意前后空格,发帖后名称变色才行)。必须@才会回答

                                        1 Reply Last reply
                                        0
                                        • P Offline
                                          P Offline
                                          peng111
                                          🍌
                                          wrote on last edited by
                                          #1200

                                          @ChatGPT 简述国内首个新型轮式拖拉机智能制造工厂的生产能力、产品类型、生产形式,满足几个环节的智能化要求?

                                          ChatGPTC 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • 1
                                          • 2
                                          • 58
                                          • 59
                                          • 60
                                          • 61
                                          • 62
                                          • 576
                                          • 577
                                          Popular Topics - 热门主题
                                          • 25年7月11日Windows 10(11)专业版在线激活密钥
                                            undefined
                                            2
                                            1
                                            78

                                          • 支付宝余额免费提现4种方式教程
                                            undefined
                                            1
                                            1
                                            874

                                          • 免费油管音乐客户端:Metrolist
                                            undefined
                                            1
                                            1
                                            145

                                          • 速度!9.9开美团年卡(12个月每月10张5元无门槛券)
                                            A
                                            abcpython
                                            0
                                            3
                                            380

                                          • 美団APP-首页~美团外卖点进去
                                            H
                                            ‍
                                            0
                                            2
                                            189

                                          • 盘古之殇:华为诺亚盘古大模型研发历程的心酸与黑暗
                                            孤
                                            孤傲的王
                                            0
                                            2
                                            67

                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          百度网盘
                                          1,581 topics
                                          连续剧
                                          774 topics
                                          国产剧
                                          603 topics
                                          美剧
                                          359 topics
                                          中国移动
                                          307 topics
                                          动画片
                                          264 topics
                                          夸克网盘
                                          232 topics
                                          动作片
                                          224 topics

                                          126

                                          Online

                                          40.9k

                                          Users

                                          40.7k

                                          Topics

                                          111.3k

                                          Posts
                                          • First post
                                            Last post