吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 2786|回复: 20
收起左侧

[Windows] 通过kimi做了一个静态的bmi计算工具

  [复制链接]
DopeTong 发表于 2025-3-13 10:10
AI每天都在进步,把《体重管理指导原则(2024 年版)》的pdf文件,上传到kimi后,通过多轮对话,生成了这index.html、bmi-calculator.html、food-calorie.html。目前来看效果还是不错的,基本满足了当时对话的要求。

界面样式
bmi计算工具.png
bmi计算.png



[HTML] 纯文本查看 复制代码
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>健康管理工具 &#127775;</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f0f8ff;
            color: #333;
            text-align: center;
        }
        h1 {
            color: #2c3e50;
            margin-bottom: 30px;
        }
        .container {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
        }
        .tool {
            margin: 30px 0;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        .tool:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }
        .tool h2 {
            color: #3498db;
            margin-top: 0;
        }
        .tool p {
            color: #7f8c8d;
            margin-bottom: 20px;
        }
        a {
            color: #3498db;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        a:hover {
            color: #2980b9;
            text-decoration: underline;
        }
        .emoji {
            font-size: 32px;
            margin: 10px 0;
        }
        footer {
            margin-top: 30px;
            color: #7f8c8d;
            font-size: 14px;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>健康管理工具 &#127775;</h1>
        <div class="emoji">&#127822; + &#128207;</div>
         
        <div class="tool">
            <div class="emoji">&#128200;</div>
            <h2>BMI 计算工具</h2>
            <p>根据年龄、性别、身高和体重计算您的BMI值,获取健康建议。</p>
            <a href="bmi-calculator.html">进入 BMI 计算工具</a>
        </div>
         
        <div class="tool">
            <div class="emoji">&#128293;</div>
            <h2>食物卡路里计算器</h2>
            <p>选择常见食物并输入分量,计算卡路里含量,了解营养信息。</p>
            <a href="food-calorie.html">进入食物卡路里计算器</a>
        </div>
         
        <footer>
            <p>&#169; 2025 健康管理工具 | 数据仅供参考,不能替代专业医疗建议</p>
            <p>代码生成 &#10084;&#65039; by <a href="https://kimi.moonshot.cn/">Kimi</a></p>
        <p> &#128161; by <a href="https://toptop.club">DOPE</a></p>
        </footer>
    </div>
</body>
</html>

[HTML] 纯文本查看 复制代码
001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>BMI 计算工具 &#127775;</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f9f9f9;
            color: #333;
        }
        h1 {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 30px;
        }
        .container {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #34495e;
            font-weight: bold;
        }
        input, select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        button {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
            width: 100%;
            margin-top: 10px;
        }
        button:hover {
            background-color: #2980b9;
        }
        #result {
            margin-top: 30px;
            padding: 20px;
            border-radius: 10px;
            background-color: #f8f9fa;
            text-align: center;
            font-size: 18px;
            display: none;
        }
        .emoji {
            font-size: 24px;
            margin: 0 10px;
        }
        .note {
            margin-top: 20px;
            padding: 15px;
            background-color: #e3f2fd;
            border-radius: 5px;
            font-size: 14px;
        }
        .diet-recommendations {
            margin-top: 30px;
            padding: 20px;
            background-color: #fffde7;
            border-radius: 10px;
            display: none;
        }
        .diet-recommendations h2 {
            color: #2c3e50;
            margin-top: 0;
        }
        .diet-list {
            list-style-type: none;
            padding: 0;
        }
        .diet-list li {
            padding: 10px;
            margin-bottom: 10px;
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        .diet-list li h3 {
            margin: 0 0 10px 0;
            color: #3498db;
        }
        .diet-list li p {
            margin: 5px 0;
            color: #333;
        }
    </style>
</head>
<body>
    <h1>BMI 计算工具 &#127775;</h1>
     
    <div class="container">
        <div class="form-group">
            <label for="age">年龄 &#128118;/&#128116;</label>
            <input type="number" id="age" min="0" max="120" placeholder="请输入年龄">
        </div>
         
        <div class="form-group">
            <label for="gender">性别 &#128105;/&#128104;</label>
            <select id="gender">
                <option value="male">男性</option>
                <option value="female">女性</option>
            </select>
        </div>
         
        <div class="form-group">
            <label for="height">身高 (厘米) &#128207;</label>
            <input type="number" id="height" min="50" max="250" placeholder="请输入身高">
        </div>
         
        <div class="form-group">
            <label for="weight">体重 (千克) &#127947;&#65039;</label>
            <input type="number" id="weight" min="10" max="300" placeholder="请输入体重">
        </div>
         
        <button>计算 BMI &#128200;</button>
         
        <div id="result">
            <h2 id="resultTitle">你的 BMI 结果 &#127752;</h2>
            <p id="bmiValue">BMI: </p>
            <p id="bmiCategory">类别: </p>
            <p id="recommendation">建议: </p>
        </div>
         
        <div id="dietRecommendations" class="diet-recommendations">
            <h2>根据您的 BMI 结果,以下是饮食推荐 &#127822;</h2>
            <ul class="diet-list" id="specificDietRecommendations">
                <!-- 饮食推荐将通过 JavaScript 动态添加 -->
            </ul>
        </div>
         
        <div class="note">
            <p>&#9888;&#65039; 注意: 此工具仅供参考,不能替代专业医疗建议。如果您有关于体重或健康的疑问,请咨询医生或营养师。</p>
        </div>
    </div>
     
    <script>
        function calculateBMI() {
            const age = parseInt(document.getElementById('age').value);
            const gender = document.getElementById('gender').value;
            const height = parseFloat(document.getElementById('height').value) / 100;
            const weight = parseFloat(document.getElementById('weight').value);
             
            if (isNaN(age) || isNaN(height) || isNaN(weight)) {
                alert('请填写所有信息!');
                return;
            }
             
            const bmi = weight / (height * height);
            let category = '';
            let recommendation = '';
            let dietRecommendations = [];
             
            // 根据不同人群判断BMI范围并提供饮食推荐
            if (age < 7) {
                // 7岁以下儿童
                if (bmi < 14) {
                    category = '消瘦';
                    dietRecommendations = [
                        '增加高热量、高蛋白食物,如全脂牛奶、鸡蛋、坚果等',
                        '保证充足的碳水化合物摄入,选择复杂碳水化合物如全麦面包、燕麦片',
                        '增加餐次,少量多餐',
                        '咨询儿科医生获取专业建议'
                    ];
                } else if (bmi < 17) {
                    category = '正常';
                    dietRecommendations = [
                        '保持均衡饮食,多样化食物选择',
                        '适量摄入优质蛋白质、碳水化合物和健康脂肪',
                        '保证新鲜蔬果的摄入',
                        '避免挑食和偏食'
                    ];
                } else if (bmi < 20) {
                    category = '超重';
                    dietRecommendations = [
                        '控制高糖、高脂肪食物的摄入',
                        '增加蔬菜、水果和全谷物的比例',
                        '选择低脂蛋白质,如鸡胸肉、鱼虾',
                        '避免饮料和果汁,多喝水'
                    ];
                } else {
                    category = '肥胖';
                    dietRecommendations = [
                        '在医生或营养师指导下进行饮食调整',
                        '减少高热量、高脂肪和高糖食物',
                        '增加膳食纤维摄入,帮助控制食欲',
                        '保证充足的优质蛋白质,维持肌肉量'
                    ];
                }
                 
                recommendation = '儿童的BMI评估较为复杂,建议咨询儿科医生。';
            } else if (age < 18) {
                // 7-18岁儿童青少年
                if (bmi < 16) {
                    category = '消瘦';
                    dietRecommendations = [
                        '增加热量密度高的食物,如坚果、干果',
                        '保证足够的蛋白质摄入,支持生长发育',
                        '选择全谷物和复杂碳水化合物',
                        '避免过度节食'
                    ];
                } else if (bmi < 21) {
                    category = '正常';
                    dietRecommendations = [
                        '保持均衡饮食,多样化食物选择',
                        '适量摄入优质蛋白质、碳水化合物和健康脂肪',
                        '保证新鲜蔬果的摄入',
                        '避免挑食和偏食'
                    ];
                } else if (bmi < 25) {
                    category = '超重';
                    dietRecommendations = [
                        '控制高糖、高脂肪食物的摄入',
                        '增加蔬菜、水果和全谷物的比例',
                        '选择低脂蛋白质,如鸡胸肉、鱼虾',
                        '避免饮料和果汁,多喝水'
                    ];
                } else {
                    category = '肥胖';
                    dietRecommendations = [
                        '在医生或营养师指导下进行饮食调整',
                        '减少高热量、高脂肪和高糖食物',
                        '增加膳食纤维摄入,帮助控制食欲',
                        '保证充足的优质蛋白质,维持肌肉量'
                    ];
                }
                 
                recommendation = '保持健康饮食和适量运动,避免长时间久坐。';
            } else if (age >= 65) {
                // 老年人
                if (bmi < 22) {
                    category = '体重过低';
                    dietRecommendations = [
                        '增加高生物价蛋白质摄入,如鸡蛋、鱼类',
                        '选择易消化的食物,如软质全谷物、炖菜',
                        '适量增加健康脂肪,如橄榄油、鱼油',
                        '少量多餐,避免一次性大量进食'
                    ];
                } else if (bmi < 27) {
                    category = '正常';
                    dietRecommendations = [
                        '保持均衡饮食,多样化食物选择',
                        '适量摄入优质蛋白质、碳水化合物和健康脂肪',
                        '保证新鲜蔬果的摄入',
                        '注意食物的质地和易咀嚼性'
                    ];
                } else {
                    category = '超重/肥胖';
                    dietRecommendations = [
                        '在医生或营养师指导下进行饮食调整',
                        '减少高热量、高脂肪和高糖食物',
                        '增加膳食纤维摄入,帮助控制食欲',
                        '保证充足的优质蛋白质,维持肌肉量'
                    ];
                }
                 
                recommendation = '老年人应保持适度运动和均衡饮食。';
            } else {
                // 18-64岁成年人
                if (bmi < 18.5) {
                    category = '体重过低';
                    dietRecommendations = [
                        '增加热量密度高的食物,如坚果、干果',
                        '保证足够的蛋白质摄入,支持肌肉生长',
                        '选择全谷物和复杂碳水化合物',
                        '避免过度节食'
                    ];
                } else if (bmi < 24) {
                    category = '正常';
                    dietRecommendations = [
                        '保持均衡饮食,多样化食物选择',
                        '适量摄入优质蛋白质、碳水化合物和健康脂肪',
                        '保证新鲜蔬果的摄入',
                        '避免挑食和偏食'
                    ];
                } else if (bmi < 28) {
                    category = '超重';
                    dietRecommendations = [
                        '控制高糖、高脂肪食物的摄入',
                        '增加蔬菜、水果和全谷物的比例',
                        '选择低脂蛋白质,如鸡胸肉、鱼虾',
                        '避免饮料和果汁,多喝水'
                    ];
                } else {
                    category = '肥胖';
                    dietRecommendations = [
                        '在医生或营养师指导下进行饮食调整',
                        '减少高热量、高脂肪和高糖食物',
                        '增加膳食纤维摄入,帮助控制食欲',
                        '保证充足的优质蛋白质,维持肌肉量'
                    ];
                }
                 
                if (gender === 'male') {
                    recommendation = '男性应保持适量运动,避免过度饮酒。';
                } else {
                    recommendation = '女性应注意营养均衡,保持健康生活方式。';
                }
            }
             
            // 显示结果
            document.getElementById('result').style.display = 'block';
            document.getElementById('bmiValue').textContent = `BMI: ${bmi.toFixed(1)}`;
            document.getElementById('bmiCategory').textContent = `类别: ${category}`;
            document.getElementById('recommendation').textContent = `建议: ${recommendation}`;
             
            // 显示饮食推荐
            document.getElementById('dietRecommendations').style.display = 'block';
            const dietList = document.getElementById('specificDietRecommendations');
            dietList.innerHTML = '';
             
            dietRecommendations.forEach(item => {
                const li = document.createElement('li');
                li.innerHTML = `<p>${item}</p>`;
                dietList.appendChild(li);
            });
        }
    </script>
</body>
</html>

[HTML] 纯文本查看 复制代码
001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>食物卡路里计算器 &#127822;</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f9f9f9;
            color: #333;
        }
        h1 {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 30px;
        }
        .container {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #34495e;
            font-weight: bold;
        }
        input, select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        button {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
            width: 100%;
            margin-top: 10px;
        }
        button:hover {
            background-color: #2980b9;
        }
        #result {
            margin-top: 30px;
            padding: 20px;
            border-radius: 10px;
            background-color: #f8f9fa;
            text-align: center;
            font-size: 18px;
            display: none;
        }
        .emoji {
            font-size: 24px;
            margin: 0 10px;
        }
        .note {
            margin-top: 20px;
            padding: 15px;
            background-color: #e3f2fd;
            border-radius: 5px;
            font-size: 14px;
        }
        .food-list {
            margin-top: 30px;
            padding: 20px;
            background-color: #fffde7;
            border-radius: 10px;
        }
        .food-list h2 {
            color: #2c3e50;
            margin-top: 0;
        }
        .food-items {
            list-style-type: none;
            padding: 0;
        }
        .food-items li {
            display: flex;
            justify-content: space-between;
            padding: 10px;
            margin-bottom: 10px;
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
    </style>
</head>
<body>
    <h1>食物卡路里计算器 &#127822;</h1>
     
    <div class="container">
        <div class="form-group">
            <label for="food">选择食物 &#127828;/&#129367;</label>
            <select id="food">
                <option value="apple">苹果</option>
                <option value="rice">米饭</option>
                <option value="chicken">鸡胸肉</option>
                <option value="bread">面包</option>
                <option value="egg">鸡蛋</option>
                <option value="milk">牛奶</option>
                <option value="banana">香蕉</option>
                <option value="noodles">面条</option>
                <option value="fish">鱼</option>
                <option value="vegetables">混合蔬菜</option>
            </select>
        </div>
         
        <div class="form-group">
            <label for="quantity">分量 (克) &#128207;</label>
            <input type="number" id="quantity" min="1" max="1000" placeholder="请输入分量">
        </div>
         
        <button>计算卡路里 &#128293;</button>
         
        <div id="result">
            <h2 id="resultTitle">卡路里结果 &#127752;</h2>
            <p id="calorieValue">卡路里: </p>
            <p id="nutritionInfo">营养信息: </p>
        </div>
         
        <div class="food-list">
            <h2>常见食物卡路里表 &#128203;</h2>
            <ul class="food-items">
                <li>
                    <span>苹果 (100g)</span>
                    <span>53 kcal</span>
                </li>
                <li>
                    <span>米饭 (100g)</span>
                    <span>116 kcal</span>
                </li>
                <li>
                    <span>鸡胸肉 (100g)</span>
                    <span>165 kcal</span>
                </li>
                <li>
                    <span>面包 (100g)</span>
                    <span>265 kcal</span>
                </li>
                <li>
                    <span>鸡蛋 (100g)</span>
                    <span>143 kcal</span>
                </li>
                <li>
                    <span>牛奶 (100ml)</span>
                    <span>54 kcal</span>
                </li>
                <li>
                    <span>香蕉 (100g)</span>
                    <span>89 kcal</span>
                </li>
                <li>
                    <span>面条 (100g)</span>
                    <span>110 kcal</span>
                </li>
                <li>
                    <span>鱼 (100g)</span>
                    <span>104 kcal</span>
                </li>
                <li>
                    <span>混合蔬菜 (100g)</span>
                    <span>25 kcal</span>
                </li>
            </ul>
        </div>
         
        <div class="note">
            <p>&#9888;&#65039; 注意: 此工具提供常见食物的平均卡路里值,实际卡路里可能因品牌、烹饪方式等因素有所不同。</p>
        </div>
    </div>
     
    <script>
        function calculateCalories() {
            const food = document.getElementById('food').value;
            const quantity = parseFloat(document.getElementById('quantity').value);
             
            if (isNaN(quantity)) {
                alert('请输入分量!');
                return;
            }
             
            let caloriesPer100g = 0;
            let nutritionInfo = '';
             
            // 食物卡路里数据库
            switch(food) {
                case 'apple':
                    caloriesPer100g = 53;
                    nutritionInfo = '富含维生素C和膳食纤维';
                    break;
                case 'rice':
                    caloriesPer100g = 116;
                    nutritionInfo = '主要提供碳水化合物';
                    break;
                case 'chicken':
                    caloriesPer100g = 165;
                    nutritionInfo = '优质蛋白质来源,低脂肪';
                    break;
                case 'bread':
                    caloriesPer100g = 265;
                    nutritionInfo = '碳水化合物和少量蛋白质';
                    break;
                case 'egg':
                    caloriesPer100g = 143;
                    nutritionInfo = '富含蛋白质和多种维生素';
                    break;
                case 'milk':
                    caloriesPer100g = 54;
                    nutritionInfo = '提供蛋白质、钙和维生素';
                    break;
                case 'banana':
                    caloriesPer100g = 89;
                    nutritionInfo = '富含钾和碳水化合物';
                    break;
                case 'noodles':
                    caloriesPer100g = 110;
                    nutritionInfo = '主要提供碳水化合物';
                    break;
                case 'fish':
                    caloriesPer100g = 104;
                    nutritionInfo = '优质蛋白质和不饱和脂肪酸';
                    break;
                case 'vegetables':
                    caloriesPer100g = 25;
                    nutritionInfo = '富含维生素、矿物质和膳食纤维';
                    break;
            }
             
            const totalCalories = (caloriesPer100g * quantity) / 100;
             
            // 显示结果
            document.getElementById('result').style.display = 'block';
            document.getElementById('calorieValue').textContent = `卡路里: ${totalCalories.toFixed(1)} kcal`;
            document.getElementById('nutritionInfo').textContent = `营养信息: ${nutritionInfo}`;
        }
    </script>
</body>
</html>


直接用的在这里:https://wwqc.lanzouu.com/iOeO02qfjg2b

免费评分

参与人数 5吾爱币 +2 热心值 +4 收起 理由
a105116 + 1 谢谢@Thanks!
qiuxudong + 1 + 1 谢谢@Thanks!
AMNZ + 1 谢谢@Thanks!
zjgxzxabc + 1 热心回复!
Jeffery_hung + 1 热心回复!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

FPL1998 发表于 2025-3-13 11:29
试了一下,体验还阔以
别闹 发表于 2025-3-13 10:19
wangpeng484 发表于 2025-3-13 10:25
其实真的ai是一个很好的学习工具,有了他每天都在进步的路上
tsyhome 发表于 2025-3-13 11:24
几个网页就能做成工具,不错!
FKDD23 发表于 2025-3-13 10:40
学习咯,谢谢分享
mykinghu 发表于 2025-3-13 10:50
厉害啊,下载一下使用,谢谢了!
sdwx1234 发表于 2025-3-13 10:53
厉害向你学习
easynet2024 发表于 2025-3-13 11:45
光知道一个结果 也解决不了问题。 谢谢分享。
jarvis123 发表于 2025-3-13 12:36
学习一下,很有用
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2025-5-23 02:24

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表