L213
The world lost seven astronauts of Space Shuttle Columbia(哥伦比亚号航天飞机) this month. It brought
home the serious risk that 1humans face into the hostile environs beyond our 2sheltered planets, raising the question
of 3 whether exploring the heavens should be left to unmannedmissions. 4 Moreover less exciting, such missions will 5 pose no risks to humans. And already robots have an impressive list of accomplishments 6compared to their flesh and blood
counterparts(职级地位相当的人或物).
“ 7 Unmanned missions are all about specifically targeted scientific 8 explorations of the universe around us.Without exceptions, these efforts rise out of intense competition 9where the most compelling,and answerable questions are 10 posed ,” said Marc
Buie, an astronomer (天文学家) at Lowell Observatory in Flagstaff, Arizona. 11Robots have dug in the dirt on Mars,
flown in the 12atmosphere of Jupiter ( 木星), and driven by the moons of Neptune. A few are 13even approaching the
boundary of the 14solar system .
Humans, 15on the other hand , have mostly been going in circles, 16barely above the surface of theplanet. 17Besides the brief Apollo Mission triumphs on the 18moon , almost 250,000 milesaway, humans have 19never gone farther than 400,000 miles
from the planet, less than aday’s drive, although straight up. Humans fly near home for several reasons. There is
thelogistics(后勤) of sending humans and what they need, like water, air and food, in a closedenvironment that
keeps them 20 alive.
L213的更多相关文章
- pta l2-13(红色警报)
题目链接:https://pintia.cn/problem-sets/994805046380707840/problems/994805063963230208 题意:给n个顶点,m条边,问每次删 ...
- flume的使用
1.flume的安装和配置 1.1 配置java_home,修改/opt/cdh/flume-1.5.0-cdh5.3.6/conf/flume-env.sh文件
- vue2.x核心源码深入浅出,我还是去看源码了
平常的工作就是以vue2.x进行开发,因为我是个实用主义者,以前我就一直觉得,你既然选择了这个框架开发你首先就要先弄懂这玩意怎么用,也就是先熟悉vue语法和各种api,而不是去纠结实现它的原理是什么. ...
随机推荐
- java web项目去除项目名称访问设置方法及tomcat的<Host>标签讲解
本文为博主原创,未经允许不得转载. 在集群项目中,为了方便用户可以更快捷的访问,即只需要输入IP和端口号,就可以直接访问项目,因为 模块比较多,记住项目名称并不容易,所以在网上查看和学习了下设置的方法 ...
- jquery.cookie.js中$.cookie() 使用方法
定义:让网站服务器把少量数据储存到客户端的硬盘或内存,从客户端的硬盘读取数据的一种技术: 下载与引入:jquery.cookie.js基于jquery:先引入jquery,再引入:jquery.coo ...
- MVC ---- Linq查询
Linq查询:编译后,会生成对应的标准查询运算符!所以说,Linq只是类似与Sql的一种更加友好的语法而已: public class LinqDemo{ public static void Tes ...
- 聊一聊 Cloud Native 与12-Factor
12-Factor(twelve-factor),也称为“十二要素”,是一套流行的应用程序开发原则.Cloud Native架构中使用12-Factor作为设计准则. 12-Factor 的目标在于: ...
- Codeforces 285C - Building Permutation
285C - Building Permutation 思路:贪心.因为每个数都不同且不超过n,而且长度也为n,所有排列只能为1 2 3 ......n.所以排好序后与对应元素的差值的绝对值加起来就是 ...
- Lua面向对象 --- 多继承
工程目录结构: ParentMother.lua: ParentMother = {} function ParentMother:MortherName() print("Morther ...
- 『cs231n』作业3问题1选讲_通过代码理解RNN&图像标注训练
一份不错的作业3资料(含答案) RNN神经元理解 单个RNN神经元行为 括号中表示的是维度 向前传播 def rnn_step_forward(x, prev_h, Wx, Wh, b): " ...
- POJ-1160 Post Office (DP+四边形不等式优化)
题目大意:有v个村庄成直线排列,要建设p个邮局,为了使每一个村庄到离它最近的邮局的距离之和最小,应该怎样分配邮局的建设,输出最小距离和. 题目分析:定义状态dp(i,j)表示建设 i 个邮局最远覆盖到 ...
- POJ-3259 Wormholes(判断负环、模板)
Description While exploring his many farms, Farmer John has discovered a number of amazing wormholes ...
- JDBC连接SQLSERVER
package xhs;import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; im ...