"Wow," Mike said. "It's snowing."I looked at the little cotton fluffs that were building up along the sidewalk and swirling erratically past my face.

哇,mike说道,下雪了。我看着小的棉花糖绒毛一般的雪花堆在人行道两旁,不规律的旋转着经过我的脸庞。

"Ew." Snow. There went my good day.

EW下雪了,我的好日子到了。

“呃。”雪。我的好日子一去不返了。

He looked surprised. "Don't you like snow?"

他看起来很惊讶,你不喜欢雪吗?

"No. That means it's too cold for rain." Obviously.

不喜欢,它和雨比起来太冷了,显而易见。

“不喜欢。这意味着冷得都不能下雨了。”

"Besides, I thought it was supposed to come down in flakes — you know, each one unique and all that. These just look like the ends of Q-tips."

另外,我觉得雪应该一片片飘下来—你知道的,每一片都是独一无二的,就像棉花糖一般。

"Haven't you ever seen snow fall before?" he asked incredulously.

在这之前你没有见过下雪吗?他惊讶的问道。

"Sure I have." I paused. "On TV."

当然见过,我停顿了一下,在电视上见过。

Mike laughed. And then a big, squishy ball of dripping snow smacked into the back of his head. We both turned to see where it came from.

mike笑了,然后一个大的,黏糊糊的雪球向他的后脑勺砸来。我们都看向是来自哪里的。

I had my suspicions about Eric, who was walking away, his back toward us — in the wrong direction for his next class.

我怀疑是eric,那个刚走开的,他背对着我们,在去他下一节课错误的方向。

Mike appatently had the same notion.

mike显然有同样的想法。

迈克大笑起来。然后,一个巨大的、松软的雪球不偏不倚地砸在了他后脑勺上。我们都回过头去看是谁干的。我怀疑是埃里克,他正背对着我们走开——但不是向他下一堂课的方向。迈克显然也这样认为。

Chapter 2 Open Book——18的更多相关文章

  1. Chapter 5 Blood Type——18

    "The Red Cross is having a blood drive in Port Angeles next weekend, so I thought you should al ...

  2. Chapter 1 First Sight——18

    But at least he sent me to an empty desk at the back without introducing me to the class. 但是最后他给我最后面 ...

  3. 清华大学计算机系大二 java 小学期考试题(摘自知乎)

    public class Main { public void test(Object o) { System.out.println("Object"); } public vo ...

  4. App Distribution Guide (一)

    This guide contains everything you need to know to distribute an app through the App Store or Mac Ap ...

  5. Think Python - Chapter 18 - Inheritance

    In this chapter I present classes to represent playing cards, decks of cards, and poker hands.If you ...

  6. 《Linux内核设计与实现》Chapter 18 读书笔记

    <Linux内核设计与实现>Chapter 18 读书笔记 一.准备开始 一个bug 一个藏匿bug的内核版本 知道这个bug最早出现在哪个内核版本中. 相关内核代码的知识和运气 想要成功 ...

  7. Chapter 18 MySQL NDB Cluster 7.3 and NDB Cluster 7.4渣翻

    Table of Contents 18.1 NDB Cluster Overview      18.2 NDB Cluster Installation      18.3 Configurati ...

  8. 零元学Expression Blend 4 - Chapter 18 用实例了解互动控制项「CheckBox」II

    原文:零元学Expression Blend 4 - Chapter 18 用实例了解互动控制项「CheckBox」II 延续上一章的CheckBox教学,本章将以实作继续延伸更灵活的运用CheckB ...

  9. 《算法导论》习题解答 Chapter 22.1-8(变换邻接表的数据结构)

    一般散列表都与B+树进行比较,包括在信息检索中也是. 确定某条边是否存在需要O(1). 不足: (1)散列冲突. (2)哈希函数需要不断变化以适应需求. 另外:B+树.(见第18章) 与散列表相比的不 ...

随机推荐

  1. 分子量(Molar Mass,ACM/ICPC Seoul 2007,UVa 1586)

    #include<stdio.h>#include<stdlib.h>#include<string.h>int main(){ char s[20]; scanf ...

  2. How to use php serialize() and unserialize()

    A PHP array or object or other complex data structure cannot be transported or stored or otherwise u ...

  3. python学习之glob模块

    如何批量获取文件路径 import glob import os def image_proc(): for files in glob.glob('/home/xxx/filename/*.png' ...

  4. HTTP状态码含义

    本文内容是在有道云笔记中找到的,已不知复制自何处,抱歉 一些常见的状态代码为:200 - 服务器成功返回网页 404 - 请求的网页不存在 503 - 服务器暂时不可用   1xx(临时响应) 用于表 ...

  5. tablespace

    CREATE [UNDO] TABLESPACE tablespace_name [DATAFILE datefile_spec1 [,datefile_spec2] ...... [{MININUM ...

  6. MVC学习笔记--IEnumerable的用法

    IEnumerable的用法 IEnumerable和IEnumerable<T>接口在.NET中是非常重要的接口,它允许开发人员定义foreach语句功能的实现 并支持非泛型方法的简单的 ...

  7. ViewBag的简单使用

    一,在控制器中写好数据绑定 //通过ID查找出整列的数据            Case.Models.Case theCase = db.Case.Find(id);            View ...

  8. 转换成maven时报错

    转自:将项目加入maven管理时报错 将项目加入maven管理时报错: Convert to maven project: An internal error occurred during: “En ...

  9. nodejs url方法

    ulrl方法 url.format(urlObj)   //将对象装换成url url.parse(urlStr[, parseQueryString][, slashesDenoteHost]) / ...

  10. hdu_5862_Counting Intersections(扫描线)

    题目链接:hdu_5862_Counting Intersections 题意: 给你与坐标轴平行的线段,问你交点数 题解: 实质就是扫描线,这里我用树状数组来记录,所有线段按X坐标排序,遇到横线段的 ...