"You say that a lot," I noted, trying to ignore the sudden trembling in my stomach and keep my voice even.

“你说的太多了”我提醒他,努力忽视我胃里一阵抽搐并且保持我声音的平稳。

"Yes, because you're not listening to me. I'm still waiting for you to believe it. If you're smart, you'll avoid me."

“是的,因为你没有听我的。我任然在等你相信它。如果你聪明的话你会躲开我的。”

"I think you've made your opinion on the subject of my intellect clear, too." My eyes narrowed.

“我认为你对我智力的评价太清晰了”我眼睛眯着说

He smiled apologetically.

他抱歉的笑着。

"So, as long as I'm being… not smart, we'll try to be friends?" I struggled to sum up the confusing exchange.

“所以,只要我不聪明,那么我们能尝试做朋友?”我努力总结出这个令人困惑的交换条件。

"That sounds about right."

“听起来就是这样。”

I looked down at my hands wrapped around the lemonade bottle, not sure what to do now.

我低头看着我握着柠檬水杯的手,不知道现在该怎么办。

"What are you thinking?" he asked curiously.

“你在想什么?”他好奇的问道。

I looked up into his deep gold eyes, became befuddled, and, as usual, blurted out the truth.

我盯着他深金色的眼睛,变的昏沉,并且就像往常一样,脱口而出了实话。

"I'm trying to figure out what you are."

“我想知道你到底是什么。”

His jaw tightened, but he kept his smile in place with some effort.

他下巴紧闭,但是他依然用笑容代替了一些情感。

"Are you having any luck with that?" he asked in an offhand tone.

“那你有好运的发现了什么吗?”他以随便的语气问道。

"Not too much," I admitted.

“没有”我承认道。

Chapter 5 Blood Type——7的更多相关文章

  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 5 Blood Type——27

    And then Mike staggered through the door, now supporting a sallow-looking Lee Stephens, another boy ...

  3. Chapter 5 Blood Type——24

    "She's just a little faint," he reassured the startled nurse. "They're blood typing i ...

  4. Chapter 5 Blood Type——23

    I didn't answer. I closed my eyes again and fought the nausea with all my strength, clamping my lips ...

  5. Chapter 5 Blood Type——22

    Suddenly the sidewalk disappeared from beneath me. My eyes flew open in shock. 突然我身下的人行道消失了.我飞快的睁开眼睛 ...

  6. Chapter 5 Blood Type——17

    "I'll be coming around with a dropper of water to prepare your cards, so please don't start unt ...

  7. Chapter 5 Blood Type——32

    "Where are you all going, exactly?" He was still looking ahead, expressionless. “真的,你要去哪里? ...

  8. Chapter 5 Blood Type——31

    I stood carefully, and I was still fine. He held the door for me, his smile polite but his eyes mock ...

  9. Chapter 5 Blood Type——30

    That wasn't a challenge; I was always pale, and my recent swoon had left a light sheen of sweat on m ...

  10. Chapter 5 Blood Type——29

    "We're meeting at my dad's store, at ten." “十点,我们在我爸的店见面.” His eyes flickered to Edward ag ...

随机推荐

  1. Android Studio 中 Live Templates 的使用

    Android Studio 中的 Live Templates 是什么? Live Templates 有什么用处? Live Templates 可以理解为:在你编码过程中,IDE自动生成的代码内 ...

  2. CentOS7终端的分辨率和字体修改

    本文转贴自https://blog.csdn.net/u010566813/article/details/40502819 一.修改分辨率 修改/boot/grub2/grub.cfg 添加如上,具 ...

  3. Django——小结

    课程介绍 MVC MVC框架的核心思想是:解耦,让不同的代码块之间降低耦合,增强代码的可扩展性和可移植性,实现向后兼容 M:Model,主要封装对数据库层的访问,对数据库中的数据进行增.删.改.查操作 ...

  4. Spring SpringMVC SpringBoot SpringCloud概念、关系及区别

    一.正面解读: Spring主要是基于IOC反转Beans管理Bean类,主要依存于SSH框架(Struts+Spring+Hibernate)这个MVC框架,所以定位很明确,Struts主要负责表示 ...

  5. js将一个具有相同键值对的一维数组转换成二维数组

    这两天,一个前端朋友在面试的笔试过程中遇到了一道类似于"用js实现将一个具有相同code值的一维数组转换成相同code值在一起的二维数组"的题目.他面试过后,把这个问题抛给了我,问 ...

  6. 201771010118 马昕璐《面向对象程序设计java》第十二周学习总结

    第一部分:理论知识学习部分 用户界面:用户与计算机系统(各种程序)交互的接口 图形用户界面:以图形方式呈现的用户界面 AET:Java 的抽象窗口工具箱包含在java.awt包中,它提供了许多用来设计 ...

  7. springboot-项目获取resources下文件碰到的问题(classPath下找不到文件和文件名乱码)

    项目是spring-boot + spring-cloud 并使用maven 管理依赖.在springboot+maven项目下怎么读取resources下的文件实现文件下载? 怎么获取resourc ...

  8. Java语法细节 - synchronized和volatile

    目录 synchronized关键字 关键字volatile synchronized关键字 synchronized关键字锁住方法和this的不同之处: public synchronized vo ...

  9. typescript之初学习

    ts的优势: 支持ES6规范 强大的IDE支持(类型检测.语法提示.重构等) Angular的开发语言 ts的新特性: 一.字符串 1.多行字符串,使用反引号`` 2.字符串模板,使用表达式传入变量和 ...

  10. js原型与继承

    demofunction Fun(){}
var foo = new Fun();foo.__proto__ === Fun.prototype 摘要 1.js本身不提供类实现,es6引入了class ...