《人工神经网络及应用 》智慧树答案满分2026年版

gebilaowang 8

知到智慧树《人工神经网络及应用 》答案2025年版



 

第一章 单元测试

1、 Synapse is the place where neurons connect in function. It is composed of presynaptic membrane, synaptic space and postsynaptic membrane.( )

A:错
B:对
答案: 对

2、 Biological neurons can be divided into sensory neurons, motor neurons and ( )according to their functions.

A:Pseudo unipolar neural networks
B:multipolar neurons
C:bipolar neurons
D:interneurons
答案: interneurons

3、 Neurons and glial cells are the two major parts of the nervous system. ( )

A:对
B:错
答案: 对

4、 Neurons are highly polarized cells, which are mainly composed of two parts: the cell body and the synapse. ( )

A:对
B:错
答案: 对

5、 The human brain is an important part of the nervous system, which contains more than 86 billion neurons. It is the central information processing organization of human beings. ( )

A:错
B:对
答案: 对

第二章 单元测试

1、 In 1989, Mead, the father of VLSI, published his monograph “( )”, in which a genetic neural network model based on evolutionary system theory was proposed.

A:Journal Neural Networks
B:Analog VLSI and Neural Systems
C:Perceptrons: An Introduction to Computational Geometry
D:Learning Machines
答案: Analog VLSI and Neural Systems

2、 In 1989, Yann Lecun proposed convolutional neural network and applied it to image processing, which should be the earliest application field of deep learning algorithm. ( )

A:错
B:对
答案: 对

3、 In 1954, Eccles, a neurophysiologist at the University of Melbourne, summarized the principle of Dale, a British physiologist, that “each neuron secretes only one kind of transmitter “.( )

A:错
B:对
答案: 对

4、 In 1972, Professor Kohonen of Finland proposed a self-organizing feature map (SOFM) neural network model. ( )

A:错
B:对
答案: 对

5、 Prediction and evaluation is an activity of scientific calculation and evaluation of some characteristics and development status of things or events in the future according to the known information of objective objects. ( )

A:对
B:错
答案: 对

第三章 单元测试

1、 The function of transfer function in neurons is to get a new mapping output of summer according to the specified function relationship, and then completes the training of artificial neural network. ( )

A:对
B:错
答案: 对

2、 The determinant changes sign when two rows (or two columns) are exchanged. The value of determinant is zero when two rows (or two columns) are same. ( )

A:对
B:错
答案: 对

3、 There are two kinds of phenomena in the objective world. The first is the phenomenon that will happen under certain conditions, which is called inevitable phenomenon. The second kind is the phenomenon that may or may not happen under certain conditions, which is called random phenomenon. ( )

A:对
B:错
答案: 对

4、 Logarithmic S-type transfer function, namely Sigmoid function, is also called S-shaped growth curve in biology. ( )

A:对
B:错
答案: 对

5、 Rectified linear unit (ReLU), similar to the slope function in mathematics, is the most commonly used transfer function of artificial neural network. ( )

A:对
B:错
答案: 对

第四章 单元测试

1、 The perceptron learning algorithm is driven by misclassification, so the stochastic gradient descent method is used to optimize the loss function. ( )

A:correct
B:misclassification
C:maximum
D:minimum
答案: misclassification

2、 Perceptron is a single-layer neural network, or neuron, which is the smallest unit of neural network. ( )

A:对
B:错
答案: 对

3、 When the perceptron is learning, each sample will be input into the neuron as a stimulus. The input signal is the feature of each sample, and the expected output is the category of the sample. When the output is different from the category, we can adjust the synaptic weight and bias value until the output of each sample is the same as the category. ( )

A:对
B:错
答案: 对

4、 If the symmetric hard limit function is selected for the transfer function, the output can be expressed as 《人工神经网络及应用 》智慧树答案满分2026年版. If the inner product of the row vector and the input vector in the weight matrix is greater than or equal to -b, the output is 1, otherwise the output is -1. ( )

A:错
B:对
答案: 对

5、 The basic idea of perceptron learning algorithm is to input samples into the network step by step, and adjust the weight matrix of the network according to the difference between the output result and the ideal output, that is to solve the optimization problem of loss function L(w,b). ( )

A:错
B:对
答案: 对

第五章 单元测试

1、 The output of BP neural network is ( )of neural network.

A:the input of the last layer
B:the output of the last layer
C:the output of the second layer
D:the input of the second layer
答案: the output of the last layer

2、 BP neural network has become one of the most representative algorithms in the field of artificial intelligence. It has been widely used in signal processing, pattern recognition, machine control (expert system, data compression) and other fields. ( )

A:错
B:对
答案: 对

3、 In 1974, Paul Werbos of the natural science foundation of the United States first proposed the use of error back propagation algorithm to train artificial neural networks in his doctoral dissertation of Harvard University, and deeply analyzed the possibility of applying it to neural networks, effectively solving the XOR loop problem that single sensor cannot handle. ( )

A:对
B:错
答案: 对

4、 In the standard BP neural network algorithm and momentum BP algorithm, the learning rate is a constant that remains constant throughout the tra

ining process, and the performance of the learning algorithm is very sensitive to the selection of the learning rate. ( )

A:错
B:对
答案: 对

5、 L-M algorithm is mainly proposed for super large scale neural network, and it is very effective in practical application. ( )

A:对
B:错
答案: 错

第六章 单元测试

1、 RBF neural network is a novel and effective feedforward neural network, which has the best local approximation and global optimal performance. ( )

A:对
B:错
答案: 对

2、 At present, RBF neural network has been successfully applied in nonlinear function approximation, time series analysis, data classification, pattern recognition, information processing, image processing, system modeling, control and fault diagnosis. ( )

A:错
B:对
答案: 对

3、 The basic idea of RBF neural network is to use radial basis function as the “basis” of hidden layer hidden unit to form hidden layer space, and hidden layer transforms input vector. The input data transformation of low dimensional space is mapped into high-dimensional space, so that the problem of linear separability in low-dimensional space can be realized in high-dimensional space. ( )

A:错
B:对
答案: 对

4、 For the learning algorithm of RBF neural network, the key problem is to determine the center parameters of the output layer node reasonably. ( )

A:对
B:错
答案: 错

5、 The method of selecting the center of RBF neural network by self-organizing learning is to select the center of RBF neural network by k-means clustering method, which belongs to supervised learning method. ( )

A:对
B:错
答案: 错

第七章 单元测试

1、 In terms of algorithm, ADALINE neural network adopts W-H learning rule, also known as the least mean square (LMS) algorithm. It is developed from the perceptron algorithm, and its convergence speed and accuracy have been greatly improved. ( )

A:错
B:对
答案: 对

2、 ADALINE neural network has simple structure and multi-layer structure. It is flexible in practical application and widely used in signal processing, system identification, pattern recognition and intelligent control. ( )

A:错
B:对
答案: 对

3、 When there are multiple ADALINE in the network, the adaptive linear neural network is also called Madaline which means many Adaline neural networks. ( )

A:对
B:错
答案: 对

4、 The algorithm used in single-layer ADALINE network is LMS algorithm, which is similar to the algorithm of perceptron, and also belongs to supervised learning algorithm. ( )

A:对
B:错
答案: 对

5、 In practical application, the inverse of the correlation matrix and the correlation coefficient are not easy to obtain, so the approximate steepest descent method is needed in the algorithm design. The core idea is that the actual mean square error of the network is replaced by the mean square error of the k-th iteration.
( )

A:对
B:错
答案: 对

第八章 单元测试

1、 Hopfield neural network is a kind of neural network which combines storage system and binary system. It not only provides a model to simulate human memory, but also guarantees the convergence to ( ).

A:local minimum
B:maximum
C:minimum
D:local maximum
答案: local minimum

2、 At present, researchers have successfully applied Hopfield neural network to solve the traveling salesman problem (TSP), which is the most representative of optimization combinatorial problems. ( )

A:对
B:错
答案: 对

3、 In 1982, American scientist John Joseph Hopfield put forward a kind of feedback neural network “Hopfield neural network” in his paper Neural Networks and Physical Systems with Emergent Collective Computational Abilities. ( )

A:错
B:对
答案: 对

4、 Under the excitation of input x, DHNN enters a dynamic change process, until the state of each neuron is no longer changed, it reaches a stable state. This process is equivalent to the process of network learning and memory, and the final output of the network is the value of each neuron in the stable state. ( )

A:错
B:对
答案: 对

5、 The order in which neurons adjust their states is not unique. It can be considered that a certain order can be specified or selected randomly. The process of neuron state adjustment includes three situations: from 0 to 1, and 1 to 0 and unchanged. ( )

A:错
B:对
答案: 对



上方为免费预览版答案,如需购买完整答案,请点击下方红字

点击这里,购买完整版答案


 

点关注,不迷路,微信扫一扫下方二维码

关注我们的公众号:阿布查查  随时查看答案,网课轻松过

《人工神经网络及应用 》智慧树答案满分2026年版


为了方便下次阅读,建议在浏览器添加书签收藏本网页

电脑浏览器添加/查看书签方法

1.按键盘的ctrl键+D键,收藏本页面

《人工神经网络及应用 》智慧树答案满分2026年版

2.下次如何查看收藏的网页?

点击浏览器右上角-【工具】或者【收藏夹】查看收藏的网页

《人工神经网络及应用 》智慧树答案满分2026年版


手机浏览器添加/查看书签方法

一、百度APP添加/查看书签方法

1.点击底部五角星收藏本网页

《人工神经网络及应用 》智慧树答案满分2026年版

2.下次如何查看收藏的网页?

点击右上角【┇】-再点击【收藏中心】查看

《人工神经网络及应用 》智慧树答案满分2026年版

二、其他手机浏览器添加/查看书签方法

1.点击【设置】-【添加书签】收藏本网页

《人工神经网络及应用 》智慧树答案满分2026年版

2.下次如何查看收藏的网页?

点击【设置】-【书签/历史】查看收藏的网页

《人工神经网络及应用 》智慧树答案满分2026年版

猜你喜欢
知到智慧树答案快速搜索教程
知到《化工工艺学(德州学院)》智慧树答案2025年版
知到《船体制图》智慧树答案2025年版
知到《材料科学基础(重庆大学)》智慧树答案2025年版
知到《无机化学(山东师范大学) 》智慧树答案2025年版 z28145
知到《品牌管理 》智慧树答案2025年版 z28144
知到《C语言程序设计(青岛西海岸新区高级职业技术学校) 》智慧树答案2025年版WYC z48527
知到《轻松“微积分” 》智慧树答案2025年版 z28143
知到《揭秘市场营销 》智慧树答案2025年版 z28142
知到《无人机倾斜摄影测量 》智慧树答案2025年版 z28140
知到《医用化学(山东联盟-滨州医学院) 》智慧树答案2025年版 z28139
知到《外科疾病与护理 》智慧树答案2025年版 z28138
知到《走进财务管理的世界 》智慧树答案2025年版 z4800
知到《动物疾病的病理基础 》智慧树答案2025年版 z28137
知到《机器人视觉》智慧树答案2025年版
知到《国际公法(外交学院) 》智慧树答案2025年版 z28136
知到《海水贝类增养殖学 》智慧树答案2025年版 z28134
知到《国际市场营销学(西安交通大学) 》智慧树答案2025年版 z28133
知到《数学(平顶山技师学院) 》智慧树答案2025年版WYC z48552
知到《FPGA应用开发 》智慧树答案2025年版 z28132
知到《林业起重输送机械 》智慧树答案2025年版 z28158
知到《药物常识 》智慧树答案2025年版 z28157
知到《儿科护理学(浙江中医药大学) 》智慧树答案2025年版 z28156
知到《大学英语(四)(山东联盟) 》智慧树答案2025年版 z28155
知到《城市轨道交通概论 》智慧树答案2025年版 z28154
知到《智慧物流与供应链基础》智慧树答案2025年版
知到《走进第二语言 》智慧树答案2025年版 z4802
知到《母婴护理技术 》智慧树答案2025年版 z28153
知到《风景园林工程Ⅰ(山东联盟) 》智慧树答案2025年版 z28152
知到《小学语文教学法(江西师范高等专科学校) 》智慧树答案2025年版 z28151
知到《机械设计基础(吉林大学) 》智慧树答案2025年版WYC z48553
知到《歌剧排练与观摩 》智慧树答案2025年版 z28150
知到《快递运营与创业管理 》智慧树答案2025年版 z28149
知到《波谱解析 》智慧树答案2025年版 z28148
知到《理论与实践之融合:抽样调查 》智慧树答案2025年版 z28147
知到《英国女性小说家漫谈 》智慧树答案2025年版 z28146
知到《环境法学》智慧树答案2025年版
知到《电子系统设计与实践 》智慧树答案2025年版 z28162
知到《环境资源法学 》智慧树答案2025年版 z28161
知到《综合英语 》智慧树答案2025年版 z4806
知到《新生必备——大学生存法则 》智慧树答案2025年版 z28160
知到《化工原理(枣庄学院) 》智慧树答案2025年版 z28172
知到《病虫害识别与防治技术 》智慧树答案2025年版WYC z48554
知到《中国土地制度 》智慧树答案2025年版 z28171
知到《农业机械概论 》智慧树答案2025年版 z28169
知到《内科护理(潍坊护理职业学院) 》智慧树答案2025年版 z28168
知到《后生寻艺-水彩画创作 》智慧树答案2025年版 z28167
知到《旅游消费者行为学(浙江师范大学)》智慧树答案2025年版
知到《中国近现代史纲要(山东师范大学)(旧版) 》智慧树答案2025年版 z28165
知到《物权法(华侨大学) 》智慧树答案2025年版 z28164
知到《就业指南针 》智慧树答案2025年版 z28163
知到《电竞解说 》智慧树答案2025年版 z28184
知到《字体设计(天津美术学院) 》智慧树答案2025年版 z4809
知到《俄罗斯文学和艺术精品赏析 》智慧树答案2025年版 z28183
知到《Arguments and Fallacies 》智慧树答案2025年版 z5938
知到《纺织品染色 》智慧树答案2025年版WYC z48555
知到《管理学基础:从美食谈起 》智慧树答案2025年版 z28182
知到《JavaEE软件开发技术(吉林联盟) 》智慧树答案2025年版 z28181
知到《牙体牙髓病学(温州医科大学)》智慧树答案2025年版
知到《前厅客房服务与管理 》智慧树答案2025年版 z28180
知到《国际遗传工程机器竞赛与合成生物技术 》智慧树答案2025年版 z28178
知到《播音主持创作基础:理论与实训 》智慧树答案2025年版 z28177
知到《学前教育研究方法 》智慧树答案2025年版 z28176
知到《武术散打(山东联盟) 》智慧树答案2025年版 z28175
知到《环境影响评价(桂林电子科技大学) 》智慧树答案2025年版 z28174
知到《园艺植物育种学 》智慧树答案2025年版 z28173
知到《字体设计 》智慧树答案2025年版 z4813
知到《英语演讲(重庆大学) 》智慧树答案2025年版WYC z48557
知到《攀岩运动(山东联盟) 》智慧树答案2025年版 z28189
知到《法语阅读》智慧树答案2025年版
知到《卓越服务 》智慧树答案2025年版 z28188
知到《金融服务营销 》智慧树答案2025年版 z28187
知到《观赏鱼饲养 》智慧树答案2025年版 z28186
知到《学术交流英语 》智慧树答案2025年版 z28185
知到《物流系统规划与设计(武汉科技大学) 》智慧树答案2025年版 z28190
知到《市场营销基础 》智慧树答案2025年版 z28200
知到《踏进创新产品建模世界(山东联盟) 》智慧树答案2025年版 z28199
知到《汽车构造•底盘篇 》智慧树答案2025年版 z28198
知到《结构力学I-超静定 》智慧树答案2025年版 z28197
知到《机构与零件应用 》智慧树答案2025年版WYC z48558
知到《水文地质学基础(河海大学)》智慧树答案2025年版
知到《中小学音乐教学设计与案例分析》智慧树答案2025年版 z2670
知到《自然科学导论 》智慧树答案2025年版 z4815
知到《PLC应用技术(山东联盟) 》智慧树答案2025年版 z28196
知到《流体力学泵与风机(山东联盟) 》智慧树答案2025年版 z28195
知到《审计学(北京语言大学) 》智慧树答案2025年版 z28194
知到《食品工艺学 》智慧树答案2025年版 z28193
知到《国家赔偿法 》智慧树答案2025年版 z28192
知到《运动解剖学(滨州学院) 》智慧树答案2025年版 z28191
知到《室内手绘快速表现(山东联盟) 》智慧树答案2025年版 z28215
知到《学生体质健康标准与辅助练习 》智慧树答案2025年版 z28214
知到《森林草原火灾扑救组织与指挥》智慧树答案2025年版
知到《建筑CAD(宁夏建设职业技术学院) 》智慧树答案2025年版WYC z48559
知到《面向人工智能的嵌入式设计与开发(山东联盟) 》智慧树答案2025年版 z28213
知到《交替传译 》智慧树答案2025年版 z28212
知到《自动控制元件(黑龙江联盟) 》智慧树答案2025年版 z4817
知到《地质学基础 》智慧树答案2025年版 z28210
知到《微机原理及接口技术 》智慧树答案2025年版 z28209
知到《以“胜任力”为导向的肾脏泌尿整合 》智慧树答案2025年版 z28208
知到《反应堆热工水力学 》智慧树答案2025年版 z28207
知到《CAD-CAM软件应用 》智慧树答案2025年版 z28206
知到《英语词根词缀博览 》智慧树答案2025年版 z28205
知到《机械设计基础(贵州航天职业技术学院)》智慧树答案2025年版
知到《景观生态学 》智慧树答案2025年版 z28203
知到《创新创业讲坛 》智慧树答案2025年版 z6092
知到《Innovative thinking and methods 》智慧树答案2025年版 z28202
知到《机器学习(山东联盟) 》智慧树答案2025年版 z28201
知到《中国画 》智慧树答案2025年版 z28226
知到《篆刻欣赏 》智慧树答案2025年版 z4820
知到《玻璃工艺学 》智慧树答案2025年版 z28224
知到《艺术鉴赏-中国传统绘画 》智慧树答案2025年版 z28223
知到《高分子物理 》智慧树答案2025年版 z28222
知到《创新创业路径 》智慧树答案2025年版 z28220
知到《仪器分析(湖南食品药品职业学院)》智慧树答案2025年版
知到《服务营销管理》智慧树答案2025年版
知到《民事诉讼法学 》智慧树答案2025年版 z28219
知到《社会福利思想 》智慧树答案2025年版 z28218
知到《玩转手工,巧思课堂 》智慧树答案2025年版 z48564
知到《土壤学(山东联盟) 》智慧树答案2025年版 z28217
知到《现代汉语之窗(现代汉语) 》智慧树答案2025年版 z28216
知到《传染病学(福建医科大学) 》智慧树答案2025年版 z28238
知到《油藏工程(山东联盟) 》智慧树答案2025年版 z28237
知到《铸造工艺学(黑龙江联盟) 》智慧树答案2025年版 z4822
知到《电路分析基础(内蒙古大学) 》智慧树答案2025年版 z28236
知到《园林工程与管理技术 》智慧树答案2025年版 z28235
知到《普通植物病理学(中国农业大学)》智慧树答案2025年版
知到《水文地质学基础 》智慧树答案2025年版 z28234
知到《创新创业实战案例解析 》智慧树答案2025年版 z28233
知到《民族化包装设计 》智慧树答案2025年版 z28232
知到《论文与写作前沿方法 》智慧树答案2025年版WYC z48565
知到《钢琴即兴伴奏与自弹自唱(山东联盟) 》智慧树答案2025年版 z28231
知到《幼儿园班级管理(山东联盟) 》智慧树答案2025年版 z28230
知到《病原生物学-人体寄生虫学 》智慧树答案2025年版 z28229
知到《旅游统计学(山东联盟) 》智慧树答案2025年版 z28228
知到《经济效益审计 》智慧树答案2025年版 z28227
知到《中原文化(文学篇) 》智慧树答案2025年版 z4824
知到《新视野大学英语1》智慧树答案2025年版
知到《分析化学(兰州大学) 》智慧树答案2025年版 z28249
知到《冷热源工程(广州大学) 》智慧树答案2025年版 z28248
知到《信号与系统A 》智慧树答案2025年版 z28247
知到《作物栽培学(内蒙古民族大学) 》智慧树答案2025年版 z28246
知到《大学语文(黑龙江科技大学) 》智慧树答案2025年版WYC z48566
知到《经济法(华东交通大学) 》智慧树答案2025年版 z28245
知到《农业政策学(山东联盟) 》智慧树答案2025年版 z28244
知到《学前游戏理论与指导 》智慧树答案2025年版 z28243
知到《轻松学懂会计学 》智慧树答案2025年版 z28242
知到《生物统计学(海南大学) 》智慧树答案2025年版 z28241
知到《数控加工技能与训练》智慧树答案2025年版
知到《宪法(绵阳师范学院) 》智慧树答案2025年版 z28240
知到《中原文化(历史篇) 》智慧树答案2025年版 z4828
知到《生物化学技术原理及应用 》智慧树答案2025年版 z28239
知到《分布式能源(山东联盟) 》智慧树答案2025年版 z28264
知到《汽车振动基础(山东联盟) 》智慧树答案2025年版 z28263
知到《汽车底盘构造与维修(鄄城县职业中等专业学校) 》智慧树答案2025年版WYC z48567
知到《手把手教你做纸艺 》智慧树答案2025年版 z28262
知到《环境监测(浙江农林大学) 》智慧树答案2025年版 z28261
知到《AURIX单片机原理及应用 》智慧树答案2025年版 z28260
知到《材料检测技术 》智慧树答案2025年版 z28259
知到《创新创业:理论实践与应用》智慧树答案2025年版
知到《药理学(江西中医药大学) 》智慧树答案2025年版 z28258
知到《妇科第一瘤微无创诊治 》智慧树答案2025年版 z28257
知到《建筑工程技术综合实训 》智慧树答案2025年版 z28256
知到《中原文化(行为篇) 》智慧树答案2025年版 z4830
知到《教你如何拍好人物 》智慧树答案2025年版 z28255
知到《大数据分析与预测技术 》智慧树答案2025年版 z28254
知到《液压与液力传动 》智慧树答案2025年版WYC z48568
知到《中医学概论(广西中医药大学) 》智慧树答案2025年版 z28253
知到《电视新闻实务 》智慧树答案2025年版 z28252
知到《工程测量(重庆大学) 》智慧树答案2025年版 z28251
知到《数字经济概论(南昌大学)》智慧树答案2025年版
知到《土木工程测量 》智慧树答案2025年版 z28250
知到《数字信号处理(西北民族大学) 》智慧树答案2025年版 z28276
知到《中国新闻史 》智慧树答案2025年版 z28275
知到《护理人文 》智慧树答案2025年版 z28274
知到《地下水动力学 》智慧树答案2025年版 z28273
知到《中医诊断学(山东联盟) 》智慧树答案2025年版 z4836
知到《视觉营销设计(山东联盟) 》智慧树答案2025年版 z28272
知到《水利水电工程施工技术与施工组织 》智慧树答案2025年版 z46805
知到《营销策划 》智慧树答案2025年版WYC z48570
知到《有图有真相:绘画中的历史人文 》智慧树答案2025年版 z28271
知到《大数据与会计》智慧树答案2025年版
知到《高级英语I(下)-华东理工大学 》智慧树答案2025年版 z28270
知到《摄影测量学(南京工业大学) 》智慧树答案2025年版 z28269
知到《思想道德修养与法律基础(渭南师范学院) 》智慧树答案2025年版 z28268
知到《普通微生物学 》智慧树答案2025年版 z28267
知到《水利工程材料检测 》智慧树答案2025年版 z28266
知到《主题发型设计 》智慧树答案2025年版 z28265
知到《机械工程控制基础(山东联盟-青岛科技大学) 》智慧树答案2025年版 z28289
知到《海洋生物资源开发与利用 》智慧树答案2025年版 z28288
知到《中医药与中华传统文化(在线式) 》智慧树答案2025年版 z4838
知到《旅游信息化与电子商务 》智慧树答案2025年版WYC z48572
知到《大学物理(河南大学)》智慧树答案2025年版
知到《安卓应用程序设计 》智慧树答案2025年版 z28287
知到《中医诊断学(山东联盟-滨州医学院) 》智慧树答案2025年版 z28286
知到《农业昆虫学 》智慧树答案2025年版 z28285
知到《桥梁工程 》智慧树答案2025年版 z28284
知到《电子商务(上海财经大学浙江学院) 》智慧树答案2025年版 z28283
知到《有机化学实验(山东联盟) 》智慧树答案2025年版 z28282
知到《ARM体系结构与程序设计 》智慧树答案2025年版 z28281
知到《市场营销学(山东联盟)(山东农业大学) 》智慧树答案2025年版 z28280
知到《母婴护理学 》智慧树答案2025年版 z28279


点击下方答案目录,3秒找到你想要的答案


分享