Skip to content
0
  • Categories
  • 讨论
  • Recent
  • Tags
  • Popular
  • Top
  • Users
  • Categories
  • 讨论
  • Recent
  • Tags
  • Popular
  • Top
  • Users
Skins
  • Light
  • Brite
  • 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 (No Skin)
  • No Skin
Collapse
JIKE社区
  1. 首页
  2. 讨论区
  3. 技术专区
  4. 本社区终于可以向 @ChatGPT 提问了!

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

Scheduled Pinned Locked Moved 技术专区
11.5k Posts 326 Posters 57.9m Views 8 Watching
  • 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

                                          Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                          Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                          With your input, this post could be even better 💗

                                          Register Login
                                          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 - 热门主题
                                          • 京东游跟进了0元体重秤
                                            我是小马甲~M
                                            我是小马甲~
                                            1
                                            6
                                            942

                                          • 中国广电免费领取30G通用数据流量
                                            A
                                            amly
                                            1
                                            2
                                            413

                                          • 阿里云Shell,可免费跑一些脚本
                                            孤
                                            孤傲的王
                                            0
                                            4
                                            274

                                          • 河北移动放心用流量免费办理 8元套餐可办理!
                                            游魂Y
                                            游魂
                                            0
                                            3
                                            169

                                          • Win 10 RTM Professional Volume:MAK
                                            V
                                            vip0546
                                            0
                                            3
                                            36

                                          • 今日支付宝福利活动(限时领取)
                                            鹏鹏啊折
                                            鹏鹏啊
                                            0
                                            3
                                            335


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          夸克网盘
                                          4,387 topics
                                          百度网盘
                                          4,332 topics
                                          连续剧
                                          1,519 topics
                                          国产剧
                                          1,027 topics
                                          美剧
                                          707 topics
                                          动作片
                                          660 topics
                                          恐怖片
                                          526 topics
                                          动画片
                                          401 topics

                                          117

                                          Online

                                          44.0k

                                          Users

                                          50.1k

                                          Topics

                                          126.0k

                                          Posts
                                          • First post
                                            Last post