At that moment, the bell rang loudly, making me jump, and Edward Cullen was out of his seat.

在这个时候,铃声响了,让我跳了起来,然后Edward Cullen 离开了他的位置。

Fluidly he rose — he was much taller than I'd thought — his back to me, and he was out the door before anyone else was out of their seat.

他站起来时,他比我想象的要高的多,他背着我。然后在没有其他任何人离开他们的位置之前他就走出了门口。

I sat frozen in my seat, staring blankly after him.

我在我的位置上呆住了,茫然着盯着他

He was so mean. It wasn't fair.

他是这么的做作。这是不公平的。

I began gathering up my things slowly, trying to block the anger that filled me, for fear my eyes would tear up.

我开始慢慢的收拾我的东西,尝试不让我自己发火,生怕眼泪夺眶而出。

For some reason, my temper was hardwired to my tear ducts.

处于一些原因我的脾气和我的眼泪是在一个电路里面的。

I usually cried when I was angry, a humiliating tendency.

当我生气的时候我总是哭,一个丢脸的癖好。

"Aren't you Isabella Swan?" a male voice asked.

你是Isabella Swan吗?一个男性的声音问着。

I looked up to see a cute, baby-faced boy, his pale blond hair carefully gelled into orderly spikes, smiling at me in a friendly way.

我抬头看见是一个聪明有着娃娃脸的男孩,的浅黄色头发用发胶小心地固定成整齐的造型,用友好的方式向我微笑着。

He obviously didn't think I smelled bad.

他显然不认为我有奇怪的味道。

Chapter 1 First Sight——33的更多相关文章

  1. Chapter 2 Open Book——33

    My chin raised a fraction. 我的下巴抬起来了一点. 我略微抬起下颚. "No, she did not send me here. I sent myself.&q ...

  2. Chapter 1 First Sight——37

    "Never mind, then," he said hastily in a voice like velvet. 别介意,他用天鹅绒般的声音急切的说道 "I can ...

  3. Chapter 1 First Sight——36

    The door opened again, and the cold wind suddenly gusted through the room, rustling the papers on th ...

  4. Chapter 1 First Sight——35

    The final bell rang at last. I walked slowly to the office to return my paperwork. 最后下课铃响了.我走到了办公室上讲 ...

  5. Chapter 1 First Sight——34

    "Was that the boy I sat next to in Biology?" I asked artlessly. 你是生物课坐在我旁边的男生吗?我天真烂漫的问道. & ...

  6. Chapter 1 First Sight——32

    The class seemed to drag on longer than the others. 这堂课看起来比别的课要长. Was it because the day was finally ...

  7. Chapter 1 First Sight——31

    I took notes carefully anyway, always looking down. 不论怎么样我都仔细的记着笔记,一直低着头. I couldn't stop myself fro ...

  8. Chapter 1 First Sight——30

    The girl sitting there giggled. I'd noticed that his eyes were black — coal black. 那个坐在那里的女孩笑着.我注意到她 ...

  9. Chapter 1 First Sight——29

    I was anxious not to be late for class on my first day. 在我第一天上学的时候我非常焦虑我会上课迟到. One of my new acquain ...

随机推荐

  1. 关于PC端与手机端随着手指移动图片位置放生变化的拖拽事件

    当按下鼠标时,图片随鼠标移动松开时图片回到原位 drag("div_id") function drag(node_id){ var node = document.getElem ...

  2. opencv BP神经网络使用过程

       1.OpenCV中的神经网络 OpenCV中封装了类CvANN_MLP,因而神经网络利用很方便.   首先构建一个网络模型:     CvANN_MLP ann;     Mat structu ...

  3. mysql count max min 语句用法

    count 用法 求总条数 $sql="select count(*) as total from e_user"; $query = mysql_query($sql, $lin ...

  4. Android编程获取手机的IMEI

    手机在生产时,每部手机均有一个唯一的标识(ID),国际上采用国际移动设备身份码(IMEI, International Mobile Equipment Identity).IMEI是由15位数字组成 ...

  5. struts2.3 创建工程

    1:在该网站下载struts2.3.16.3,目前为最新版.http://www.struts.apache.org/download.cgi 不妨下载“Full Distribution”版本 下载 ...

  6. lr_save_var() 截取任意字符串长度,以参数形式输出(参数转变量)

    Action() { char * desc=(char *)malloc(10);  //定义指针变量,以变量形式存放截取到的参数值 // char * aa = "jadkshfkasd ...

  7. Debian系Linux的dpkg命令

    dpkg "是"Debian Packager "的简写.为 "Debian" 专门开发的套件管理系统,方便软件的安装.更新及移除.所有源自" ...

  8. 《JavaScript高级程序设计》读书笔记 ---Object 类型

    引用类型的值(对象)是引用类型的一个实例.在ECMAScript 中,引用类型是一种数据结构,用于将数据和功能组织在一起.它也常被称为类,但这种称呼并不妥当.尽管ECMAScript从技术上讲是一门面 ...

  9. CodeForces 702A Maximum Increase

    简单$dp$. 如果$a[i]>a[i-1]$,那么$dp[i]=dp[i-1]+1$.否则,$dp[i]=1$.答案为$dp[i]$中的最大值. #pragma comment(linker, ...

  10. Memory and Scores

    Memory and Scores 题目链接:http://codeforces.com/contest/712/problem/D dp 因为每轮Memory和Lexa能取的都在[-k,k],也就是 ...