Chapter 2 Open Book——28
I kept my voice indifferent. "May I?"
我尽量让我的声音显得不那么突兀,我能试试吗?
我尽量让自己的声音显得漠不关心。“可以让我看一下吗?”
He smirked and pushed the microscope to me.
他傻笑然后把显微镜推给我。
他撇嘴坏笑,把显微镜推给我。
I looked through the eyepiece eagerly, only to be disappointed. Dang it,he was right.
我急切地通过目镜看去,只有失望。畜生,他是对的。
我急切地透过接目镜看进去,却失望了。该死,他是对的。
"Slide three?" I held out my hand without looking at him.
第三片?我伸出我的手没有看他。
“第三张玻片?”我伸出手,却不看他。
He handed it to me; it seemed like he was being careful not to touch my skin again.
他把它递给了我,看起来他好像小心注意不再一次碰到我的皮肤。
他把玻片递给我。他似乎小心翼翼地避免着再次和我有肌肤上的接触。
I took the most fleeting look I could manage.
我用我能做到的最快速度看了看玻片。
"Interphase." I passed him the microscope before he could ask for it. He took a swift peek, and then wrote it down.
间期。我把显微镜传给他在他问之前。他飞快的扫了一眼,然后写下了。
I would have written it while he looked, but his clear, elegant script intimidated me.
在他看的时候我本来可以写下的,但是他的自己把我吓到了。
在他看的时候我本可以写下来的,但他清秀雅致的笔迹把我镇住了。
I didn't want to spoil the page with my clumsy scrawl.
我不想让我杂乱的字迹毁了这页纸。
我不想用我笨拙潦草的字体毁掉这张纸。
We were finished before anyone else was close.
我们在别人之前完成了。
I could see Mike and his partner comparing two slides again and again, and another group had their book open under the table.
我能看到mike和他的伙伴对比了两片一次又一次,然后另一组把他们的书打开摊在桌子下面。
Chapter 2 Open Book——28的更多相关文章
- Chapter 1 First Sight——28
"Which one is the boy with the reddish brown hair?" 那个红褐色头发的男孩是谁? I asked. I peeked at him ...
- Chapter 5 Blood Type——28
Mike came through the door then, glancing from me to Edward. 然后Mike从门里走出来,看了一眼我和Edward The look he g ...
- 清华大学计算机系大二 java 小学期考试题(摘自知乎)
public class Main { public void test(Object o) { System.out.println("Object"); } public vo ...
- 零元学Expression Blend 4 - Chapter 28 ListBox的基本运用与更改预设样式
原文:零元学Expression Blend 4 - Chapter 28 ListBox的基本运用与更改预设样式 本章将先教大家认识ListBox的基本运用与更改预设样式 本章将先教大家认识List ...
- MySQL Crash Course #20# Chapter 28. Managing Security
限制用户的操作权限并不是怕有人恶意搞破坏,而是为了减少失误操作的可能性. 详细文档:https://dev.mysql.com/doc/refman/8.0/en/user-account-manag ...
- Chapter 4 Invitations——28
"Oh, thanks, now that's all cleared up." Heavy sarcasm. “哦,真感谢,现在一切都清楚了.” 我很讽刺的说道 I realiz ...
- Modern C++ CHAPTER 2(读书笔记)
CHAPTER 2 Recipe 2-1. Initializing Variables Recipe 2-2. Initializing Objects with Initializer Lists ...
- PRML Chapter 1. Introduction
PRML Chapter 1. Introduction 为了防止忘记,要把每章的重要内容都记下来,从第一章开始 2012@3@28 今天又回去稍微翻了一下第一章内容,发现第一次看的时候没有看透,每次 ...
- MongoDB:The Definitive Guide CHAPTER 2 Getting Started
MongoDB is very powerful, but it is still easy to get started with. In this chapter we’ll introduce ...
随机推荐
- 线段树练习 3&&P3372 【模板】线段树 1
题目描述 Description 给你N个数,有两种操作: 1:给区间[a,b]的所有数增加X 2:询问区间[a,b]的数的和. 输入描述 Input Description 第一行一个正整数n,接下 ...
- 修改linux默认ssh 端口
修改ssh的默认端口 1.编辑ssh配置文件: #vi /etc/ssh/ssh_config #vi /etc/ssh/sshd_config ...
- 获取select选中的值
$("#CalibrationYear option:selected").text();
- 文档在线预览开源实现方案二:OpenOffice + pdf.js
文档在线预览的另一种实现方式采用的技术栈是OpenOffice + pdf.js, office文档转换为pdf的工作依然由OpenOffice的服务来完成,pdf生成后我们不再将其转换为其他文件而是 ...
- wpf 线程与界面线程
Thread thread = new Thread(new ThreadStart(() => { VisualTarget visualTarget = ...
- 冰刃IceSword中文版 V1.22 绿色汉化修正版
软件名称: 冰刃IceSword中文版 V1.22 绿色汉化修正版 软件语言: 简体中文 授权方式: 免费软件 运行环境: Win 32位/64位 软件大小: 2.1MB 图片预览: 软件简介: Ic ...
- 自己封装的tc
封装弹窗 html <head> <script src="jquery.js"></script> <script src=" ...
- mysql的注释
一直没怎么用过mysql数据库, 今天用mysqldump备份了一下表结构, 记录一下遇到的问题 1. mysqldump默认导出没有事务和存储过程, 如果想导出这些可以用 -E 和 -R[--rou ...
- c/c++笔试面试经典函数实现
/* strcpy函数实现 拷贝字符串 */ char* Strcpy(char* dst, char* src) { assert(dst != NULL && src != NUL ...
- Js的Url中传递中文参数乱码的解决
一:Js的Url中传递中文参数乱码问题,重点:encodeURI编码,decodeURI解码: 1.传参页面Javascript代码: 2. 接收参数页面:test02.html 二:如何获取Url& ...