免费试用:最火的人工智能查询工具
     最强AI人工智能聊天工具
     对话机器人解答疑难问题
星外智问直连原始API接口(GPT-4o)
➡️未登录受限条数,请登陆使用完整服务>>>➡️
请输入您要问的问题:
(真正API原始接口,速度稍慢,马上反应的都是假的GPT4o)

➡️VVIP会员聊天保密并有上下文(加强版)>>>➡️
➡️VVIP会员聊天保密并有上下文(GPT4o版)>>>➡️

查下百度  查下必应  写作指引 写万字长文

以下是最新的问题与回复:
已问17317个问题(VVIP的问题不显示)   列表页
问:生石膏的毒性
chatGPT答: 8v6.cn
石膏的毒性不明确,一般认为是非毒性的。它会产生一些微小的有毒气体,如一氧化碳和二氧化硫,但这些气体的浓度很低,不影响人体健康。石膏也会产生有毒的粉尘粒子,但因其尺寸很小,所以不致于对人体产生害处。

 查百度 查必应 02-20 00:19:52 吐槽  复制 

问:使用html和css写一个问答网页,要求有提问框,回答框,都在网页中间,网页最上边有一行标题,叫做chatgpt机器人,还需要有一个提问按钮,要求按钮是比较好看的按钮,并且与chatgpt官方api的回答相连接,按钮点击获取回答结果并展示出来
chatGPT答: 8v6.cn
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Chatgpt机器人</title>
  <style>
    body {
      background-color: #f5f5f5;
      margin: 0px;
      padding: 0px;
    }
    #chat {
      background-color: #fff;
      width: 600px;
      margin: 10px auto;
      font-size: 16px;
      padding: 10px;
      overflow:auto;
    }
    #chat h1 {
      font-size: 22px;
      font-weight: bold;
      padding: 0px;
      margin: 5px 0px;
      text-align: center;
    } 
    #chat #user_form {
      padding-bottom: 5px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    #chat #user_form div {
      float: left;
    }
    #chat #user_form #user_question {
      width: 400px;
      line-height: 30px;
      height: 30px;
      font-size: 16px;
    }
    #chat #user_form #get_question {
      width: 120px;
      line-height: 30px;
      height: 30px;
      font-size: 14px;
      background: blue;
      color: #fff;
      text-align: center;
      border: none;
      margin-right: 10px;
      cursor: pointer;
    }
    #chat #user_form #get_question:hover {
      background-color: #2196F3;
    }
    #chat #answer_form {
      padding: 10px 0px;
    }
    #chat #answer_form #user_answer {
      width: 500px;
      height: 120px;
      font-size: 16px;
      border: none;
      padding: 10px;
    }
  </style>
</head>
<body>
  <div id="chat">
    <h1>Chatgpt机器人</h1>
    <div id="user_form">
      <div>
        <input type="text" id="user_question" name="user_question">
      </div>
      <div>
        <input type="submit" id="get_question" value="提问" onclick="getAnswer()"/>
      </div>
      <div>
        <span id="show_answer"></span>
      </div>
    </div>
    <div id="answer_form">
      <textarea name="user_answer" id="user_answer" cols="30" rows="10" disabled></textarea>
    </div>
  </div>
  <script type="text/javascript">
      function getAnswer() {
          var the_question = document.getElementById("user_question");
          var..

 查百度 查必应 02-20 00:07:45 吐槽  复制 

问:使用html和css写一个问答网页,要求有提问框,回答框,都在网页中间,网页最上边有一行标题,叫做chatgpt机器人,还需要有一个提问按钮,要求按钮是比较好看的按钮,并且与chatgpt官方api的回答相连接,按钮点击获取回答结果
chatGPT答: 8v6.cn
并展示出来

```
<html>
  <head>
    <style type="text/css">
        body {
            font-family: sans-serif;
            font-size: 16px;
        }
        #container {
            width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        h1 {
            font-size:24px;
        }
        #question-box {
            width: 700px;
            margin: 20px auto;
            border: 1px solid #ccc;
            padding: 10px;
        }
        #answer-box {
            padding: 10px;
            margin: 10px auto;
            width:700px;
            border:1px solid #ccc;
        }
        .btn {
            background-color: #0088cc;
            color: white;
            padding: 10px 20px;
            font-size:20px;
        }
    </style>
  </head>
  <body>
      <div id="container">
          <h1>Chatgpt机器人</h1>
          <div id="question-box">
              您想要问的问题
          </div>
          <div>
              <button type="button" class="btn">提问</button>
          </div>
          <div id="answer-box">
              Chatgpt机器人给出的回答
          </div>
      </div>
  </body>
</html>
```

Javascript代码(使用Chatgpt官方API):
```
document.querySelector('button').addEventListener('click',
function(){
  //获取提问框输入的内容
  var question = document.querySelector('#question-box').value;
  
  //请求Chatgpt官方API
  fetch('https://api.chatgpt.com/v1/data/question', {
    method: 'POST',
    headers: { 
      'Content-Type': 'application/json'
    },   
    body: JSON.stringify({
        "question": question
    })
  })
  .then(function(response) {
      return response.json();
  })
  .then(function(responseJSON) {
      //获取Chatgpt机器人返回的回答
      var answer = responseJSON.data.answer;
      //显示在回答框
      document.querySelector('#answer-box').innerHTML = answer;
  });
});
```

 查百度 查必应 02-20 00:06:30 吐槽  复制 

问:使用html和css写一个问答网页,要求有提问框,回答框,都在网页中间,网页最上边有一行标题,叫做chatgpt机器人,还需要有一个提问按钮,要求按钮是比较好看的按钮,并且与chatgpt官方api的提问回答相连
chatGPT答: 8v6.cn
接,按钮点击获取回答结果

<html>
    <head>
        <title>ChatGPT机器人</title>
        <style>
            *{
                font-size: 13px;
            }

            body{
                margin: 0;
                padding: 0;
            }

            .container{
                width: 500px;
                margin: 20px auto;
            }

            .title{
                padding: 10px;
                text-align: center;
            }

            .ask-input{
                width: 100%;
                border: 1px solid #ccc;
                border-radius: 4px;
                padding: 10px;
                margin-bottom: 10px;
            }

            .btn-ask{
                width: 100%;
                background-color: #2eb398;
                padding: 10px 0;
                text-align: center;
                font-weight: bold;
                color: white;
                border: 0;
                border-radius: 4px;
            }

            .answer{
                background-color: #f4f4f4;
                padding: 10px;
            }
        </style>
    </head>
    <body>
        <div class="container">
            <div class="title">
                <h2>ChatGPT机器人</h2>
            </div>
            <div>
                <input type="input" class="ask-input" placeholder="输入您想要问的问题"/>
            </div>
            <div>
                <input type="button" onclick="getAnswer()" class="btn-ask" value="提交提问"/>
            </div>
            <div class="answer">
                答案:
            </div>
        </div>
        <script>
            function getAnswer(){
                //AJAX connect api and get answer
            }
        </script>
    </body>
</html>

 查百度 查必应 02-20 00:02:19 吐槽  复制 

问:请使用go语言写出一个能够批量发送GET请求并返回状态码的程序,超时时间设置为1秒
chatGPT答: 8v6.cn
package main

import (
	"fmt"
	"net/http"
	"time"
)

func main() {
	urls := []string{"http://www.qq.com", "http://www.baidu.com"} // 存放要发送GET请求的URL

	// 设置超时时间为1秒
	timeout := 1 * time.Second 

	for _, url := range urls {
		client := http.Client{
			Timeout: timeout,
		}
		// 创建一个http GET请求
		req, err := http.NewRequest("GET", url, nil)
		if err != nil {
			fmt.Println("GET request error:", err)
			continue
		}

		// 发送GET请求
		resp, err := client.Do(req)
		if err != nil {
			fmt.Println("client.Do error: ", err)
			continue
		}

		// 返回状态码
		fmt.Println(resp.StatusCode)

		resp.Body.Close()
	}

}

 查百度 查必应 02-19 23:57:54 吐槽  复制 

问:使用html和css写一个问答网页,要求有提问框,回答框,都在网页中间,网页最上边有一行标题,叫做chatgpt机器人,还需要有一个提问按钮,要求按钮是比较好看的按钮
chatGPT答: 8v6.cn
<html> 
<head> 
<title>ChatGpt机器人</title> 
<style type="text/css"> 
body { 
    background-color: #cccccc; 
    font-family: sans-serif; 
    padding: 10px; 
    text-align: center; 
} 

.form { 
    width: 500px; 
    margin: 0 auto; 
    padding: 10px 20px; 
    background-color: #f0f0f0; 
    text-align: left; 
} 

input[type="text"] { 
    width: 300px; 
    padding: 8px 10px; 
    font-size: 16px; 
    margin-bottom: 6px; 
    border: 1px solid #999; 
    box-sizing: border-box; 
} 

textarea { 
    height: 250px; 
    width: 450px; 
    padding: 8px 10px; 
    font-size: 16px; 
    border: 1px solid #999; 
    box-sizing: border-box; 
    resize: none; 

} 


input[type="submit"] { 
    cursor: pointer; 
    background-color: #4CAF50; 
    color: #fff; 
    padding: 8px; 
    font-size: 16px; 
    border: none; 
    border-radius: 5px; 
    displayed: inline-block; 

} 
</style> 
</head> 
<body> 
<h1>ChatGpt机器人</h1> 

<div class="form"> 
<p>欢迎使用ChatGPT机器人,请在下面的框内输入您的问题:</p> 

<form action="" method="post"> 
<input type="text" name="question" placeholder="你想问的问题?"> 
<textarea name="answer" placeholder="机器人回复:" readonly></textarea> 
<input type="submit" value="提问"> 
</form> 
</div> 

</body> 
</html>

 查百度 查必应 02-19 23:55:36 吐槽  复制 

问:电脑内存怎么检测
chatGPT答: 8v6.cn
?

1、使用系统自带工具检测:Windows系统用户可以通过进入“计算机” -> “属性”找到“设备管理器”,然后打开“内存”项,可以查看到电脑内存的更详细的信息。

2、使用各种专业的内存检测软件进行检测:Windows系统用户可以使用PC Wizard、ASUS PC Probe、AIDA64 Extreme等多种内存检测软件,同时还可以使用第三方工具,如Memtest86+等软件进行检测。

 查百度 查必应 02-19 23:52:24 吐槽  复制 

问:请使用go语言写出一个能够批量发送GET请求并返回状态码的程序
chatGPT答: 8v6.cn
package main

import (
	"fmt"
	"net/http"
)

func main() {
	// 要发送的多个URL
	urls := []string{
		"https://www.baidu.com",
		"https://www.google.com",
		"https://www.apple.com",
	}
	
	ch := make(chan string)
	
	// 并发处理请求
	for _, url := range urls {
		go fetch(url, ch)
	}
	
	// 阻塞等待,直到所有的URL请求结束
	for i := 0; i < len(urls); i++ {
		fmt.Println(<-ch)
	}
}

func fetch(url string, ch chan<- string) {
	resp, err := http.Get(url)
	if err != nil {
		ch <- fmt.Sprintf("%s : %s\n", url, err)
		return
	}
	defer resp.Body.Close()
	
	// 打印Status
	ch <- fmt.Sprintf("%s : %s\n", url, resp.Status)
}

 查百度 查必应 02-19 23:49:21 吐槽  复制 

问:写一篇我的家乡在河边
chatGPT答: 8v6.cn
的记叙文

我的家乡在河边,河边的景色是依山傍水的风光。走在河边,人们可以看到山上的茂林修竹,绿树葱翠,湖面光滑,像镜子一样平静。

沿着河边的小路走,就可以看到流水潺潺,汩汩水韵。低处有流水滔滔,中止有曲折小河,而高处则是蜿蜒曲折的河流,水流汹涌而去,奔腾不息。在夏天,河水更加清澈和碧绿,还添加了一种清新的动人之景。

可爱的河边,春夏季节,让人们得到了温暖的拥抱,秋冬则辗转渐渐消逝。当我一次次来到家乡,总会像回到了家一样,始终弥漫着温馨的气息。

 查百度 查必应 02-19 23:23:51 吐槽  复制 

问:想你想到睡不着怎么回复喜欢的女生简短点
chatGPT答: 8v6.cn
夜太漫长了,但我想你,安心睡吧~

 查百度 查必应 02-19 23:16:35 吐槽  复制 

问:设计logo 牛馍王
chatGPT答: 8v6.cn
?

![logo](https://raw.githubusercontent.com/KAISHUAI123/photo/master/t1e1z2d0826.png)

 查百度 查必应 02-19 23:15:59 吐槽  复制 

问:想你想到睡不着怎么回复喜欢的女生
chatGPT答: 8v6.cn
如果我很喜欢这个女生,我会说:“被你想起太棒了,我想到你就睡不着了!希望明天可以久一点睡!”

 查百度 查必应 02-19 23:14:37 吐槽  复制 

问:想你想到睡不着
chatGPT答: 8v6.cn
1.找个朋友聊天或者聊天,看看他们有什么有趣的故事。

2.玩游戏或者学习新的技能,以使自己的大脑跟上。

3.读一本书或听一些有趣的故事,让你的思维充满无限想象力。

4.闭上眼睛,给自己一段安静的时间,并沉浸在自己脑海中的世界中。

5.做一些放松身心的运动和深呼吸,也是比较好的放松方式。

6.观看一部影视或节目以放松自己的心情。

7.试着睡前做一些紧张的活动,比如画画或者练习钢琴等,以此达到放松的效果。

8.平时睡前不建议使用手机,它会影响睡眠质量,所以建议关掉电脑和手机。

 查百度 查必应 02-19 23:13:51 吐槽  复制 

问:射手座的男孩子应该找什么样的女孩
chatGPT答: 8v6.cn
子

射手座的男孩子应该找一个友好而活跃的女孩子,有着广泛的兴趣并可以鼓励他去探索新领域,她光明正大、性格开朗、有足够坚毅和韧性、关心他人、会给予这个男孩慰藉和支持。另外,在某种程度上,她也应该有独立的精神,让这个射手座的男孩子在安全的范围内自由畅快地发展,积极地参与各种活动!

 查百度 查必应 02-19 22:17:04 吐槽  复制 

问:你好
chatGPT答: 8v6.cn
,我叫小花,来自中国九州山区,我喜欢户外活动,热爱大自然,喜欢爬山,也喜欢参加户外拓展等活动。但是最近一段时间,由于疫情的影响,我都没有机会出去,实在是有点无聊。不过,这也给我一个机会去学习新的技能,例如精通一项新的计算机技能,或者是作画等。这样可以让我有更多的自信,在未来的职业中有更好的表现。

 查百度 查必应 02-19 21:48:21 吐槽  复制 

 


chatGPT中国版--星外智问--8v6.CN
当前运行网址:haoadm.com
客服微信:xwgdd_com APP下载 怎么问 识别真假GPT4 使用GPT赚钱 退出登陆