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,而不是去纠结实现它的原理是什么. ...
随机推荐
- UVa 11235 频繁出现的数值
https://vjudge.net/problem/UVA-11235 题意: 给出一个非降序排列的整数数组a1,a2,...,an,你的任务是对于一系列询问(i,j),回答ai,ai+1,...a ...
- UVa 1602 网格动物(回溯)
https://vjudge.net/problem/UVA-1602 题意:计算n连通块不同形态的个数. 思路: 实在是不知道该怎么做好,感觉判重实在是太麻烦了. 判重就是判断所有格子位置是否都相同 ...
- mybatis generator插件系列--lombok插件 (减少百分之九十bean代码)
经常使用mybatis generator生成代码的你 有没有因为生成的getter/setter而烦恼呢? 有没有生成后又手动加toString/hashCode/Equals方法呢? 有没有改一个 ...
- Qt_QTabWidget_多行
ZC: 一下是网上搜到的一些信息 ZC: 我只是在 Android环境做了一些测试,别的环境暂未测试... 1.自定义 QTabBar子类 #ifndef MYTABBAR_H #define MYT ...
- [原][OSG][osgBullet][osgworks][bullet]编译osgBullet尝试物理引擎
相关网址: 类似文章:http://blog.csdn.net/lh1162810317/article/details/17475297 osgBullet官网:http://osgbullet.v ...
- [原][OSG]整理osg渲染一帧的流程
参考:最长的一帧 先看下frame void ViewerBase::frame(double simulationTime) { advance(simulationTime);//记录仿真时间,帧 ...
- [ios]IOS的AppDelegate方法中的事件触发调用 以及 关闭 ios应用程序
IOS的AppDelegate方法中的事件触发调用 参考:http://blog.sina.com.cn/s/blog_a573f7990101bphp.html //当应用程序将要进入非活动状态执行 ...
- 简说Spring事务
一.事务定义: 事务指逻辑上的一组操作,这组操作要么全部成功,要么全部失败. 二.事务的特性: 1. 原子性 - 指事务是一个不可分割的工作单位,事务中的操作要么都发生,要么都不发生. 2. 一致性 ...
- Java 集合-List接口和三个子类实现
List List:有序的 collection(也称为序列).此接口的用户可以对列表中每个元素的插入位置进行精确地控制.用户可以根据元素的整数索引(在列表中的位置)访问元素,并搜索列表中的元素.与 ...
- Redis之无序集合类型命令
Redis 集合(Set) Redis 的 Set 是 String 类型的无序集合.集合成员是唯一的,这就意味着集合中不能出现重复的数据. Redis 中集合是通过哈希表实现的,所以添加,删除,查找 ...