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的更多相关文章

  1. pta l2-13(红色警报)

    题目链接:https://pintia.cn/problem-sets/994805046380707840/problems/994805063963230208 题意:给n个顶点,m条边,问每次删 ...

  2. flume的使用

    1.flume的安装和配置 1.1 配置java_home,修改/opt/cdh/flume-1.5.0-cdh5.3.6/conf/flume-env.sh文件

  3. vue2.x核心源码深入浅出,我还是去看源码了

    平常的工作就是以vue2.x进行开发,因为我是个实用主义者,以前我就一直觉得,你既然选择了这个框架开发你首先就要先弄懂这玩意怎么用,也就是先熟悉vue语法和各种api,而不是去纠结实现它的原理是什么. ...

随机推荐

  1. POJ 3624 Charm Bracelet(0-1背包模板)

    http://poj.org/problem?id=3624 题意:给出物品的重量和价值,在重量一定的情况下价值尽可能的大. 思路:经典0-1背包.直接套用模板. #include<iostre ...

  2. UVa 1614 奇怪的股市

    https://vjudge.net/problem/UVA-1614 题意:输入一个长度为n的序列a,满足1<=ai<=i,要求确定每个数的正负号,使得所有数的总和为0. 思路:贪心部分 ...

  3. testlogin

    !/usr/bin/env python coding:utf-8 import requests import unittest import json,urllib class testlogin ...

  4. C++异常及捕获_01

    ZC: Win7x64 + qt-opensource-windows-x86-msvc2010_opengl-5.3.2.exe 1. class AA { public: void A() { & ...

  5. oracle 临时表的使用

    在oracle中,临时表分为会话级别(session)和事务级别(transaction)两种. 会话级的临时表在整个会话期间都存在,直到会话结束:事务级别的临时表数据在transaction结束后消 ...

  6. 解决Word 2013, Word 2016的保存太慢的问题

    尝试下面步骤: 方法 一:文件〉选项〉高级〉,保存,关闭“允许后台保存”选项. 提示:禁止该项功能可能存在风险, 请及时保存文件. 方法二:禁用 Office  中的硬件加速 1.启动任一 Offic ...

  7. mysql数据库切分

    一.数据的垂直切分概念:数据的垂直切分,也可以称之为纵向切分.将不同的表分散到不同的数据库主机中.一个应用系统,总体功能肯定是由很多个功能模块所组成的,而每一个功能模块所需要的数据对应到数据库中就是一 ...

  8. Java 主要特性

    Java 有下面的一些主要特性. 面向对象 在 Java 中,所有的都是对象.正式因为 Java 基于对象模型,所以 Java 更加容易进行扩展. Java语言提供类.接口和继承等面向对象的特性,为了 ...

  9. Nginx配置https, 80端口重定向443

    server { listen 443 ssl; server_name 域名; charset utf-8; access_log /var/log/nginx/webhook.iminho.me/ ...

  10. C++中的this指针

    1.关于this指针的一个精典回答: 当你进入一个房子后,你可以看见桌子.椅子.地板等,但是房子你是看不到全貌了.对于一个类的实例来说,你可以看到它的成员函数.成员变量,但是实例本身呢?this是一个 ...