"So," Mike said, looking at the floor, "Jessica asked me to the spring dance."

“所以,”Mike边看着楼梯边说“Jessica邀请我去春天舞会”

"That's great." I made my voice bright and enthusiastic. "You'll have a lot of fun with Jessica."

“那挺好的”我让我的声音听上去热情和明亮。“你和Jessica会玩的开心的”

"Well…" He floundered as he examined my smile, clearly not happy with my response. "I told her I had to think about it."

“嗯…”他挣扎着审视着我的笑容,对我的回应并不开心。“我告诉她我必须考虑一下”

"Why would you do that?" I let disapproval color my tone, though I was relieved he hadn't given her an absolute no.

“为什么?”我用不赞成的语气说着,尽管我放心了毕竟他没有给她绝对的否定。

His face was bright red as he looked down again. Pity shook my resolve.

他又一次低下头,一脸的坦然。内疚让我的决心有点动摇了。

"I was wondering if… well, if you might be planning to ask me."

“我想知道,是不是,嗯,是不是你可能会邀请我”

I paused for a moment, hating the wave of guilt that swept through me.

我愣住了一会,一阵内疚感向我袭来。

But I saw, from the corner of my eye, Edward's head tilt reflexively in my direction.

但是,从我眼睛的角落我看到,Edward的头向我的反方向倾斜了一下。

"Mike, I think you should tell her yes," I said.

“Mike,我认为你应该告诉她你愿意”我说道。

"Did you already ask someone?" Did Edward notice how Mike's eyes flickered in his direction?

“你已经约了别人吗?”Edward注意到了Mike向他那边闪烁的眼神了吗?

"No," I assured him. "I'm not going to the dance at all."

“没有”我向他保证。“我一点也不想去舞会”

"Why not?" Mike demanded.

“为什么不去?”Mike逼问道。

Chapter 4 Invitations——8的更多相关文章

  1. Chapter 4 Invitations——28

    "Oh, thanks, now that's all cleared up." Heavy sarcasm. “哦,真感谢,现在一切都清楚了.” 我很讽刺的说道 I realiz ...

  2. Chapter 4 Invitations——27

    "Myself, obviously." He enunciated every syllable, as if he were talking to someone mental ...

  3. Chapter 4 Invitations——26

    "I wanted to ask you something, but you sidetracked me," he chuckled. He seemed to have re ...

  4. Chapter 4 Invitations——25

    "So you are trying to irritate me to death? Since Tyler's van didn't do the job?" "所以 ...

  5. Chapter 4 Invitations——24

    "How do you do that?" I asked in amazed irritation. “你是怎么做到的?”我惊讶的问道. "Do what?" ...

  6. Chapter 4 Invitations——23

    The next morning, when I pulled into the parking lot, I deliberately parked as far as possible from ...

  7. Chapter 4 Invitations——22

    "Are you going all by yourself?" he asked, and I couldn't tell if he was suspicious I had ...

  8. Chapter 4 Invitations——21

    "Dad?" I asked when he was almost done. “爸?”我当他快吃完的时候问道. "Yeah, Bella?" “怎么了,Bel ...

  9. Chapter 4 Invitations——20

    Well, that was fine. I could leave him alone. 行吧,但愿一切都好.我能让他一个人. I would leave him alone. 我也会让他一个人的. ...

  10. Chapter 4 Invitations——19

    After I hung up, I tried to concentrate on dinner — dicing the chicken especially; I didn't want to ...

随机推荐

  1. P4178 Tree

    最简单的点分治 淀粉质的思想: “分而治之”,缩小问题规模,合并求解: #include<cstdio> #include<cmath> #include<cstring ...

  2. P3805 【模板】manacher算法

    #include <bits/stdc++.h> #define up(i,l,r) for(register int i = (l);i <= (r); i++) #define ...

  3. Linux 云计算运维之路

    搭建中小型网站的架构图 s1-2 Linux 硬件基础 s3-4 linux 基础 文件系统 用户权限 s5-6 Linux 标准输出 系统优化 目录结构 w7 rsync-备份服务器 w8 NFS服 ...

  4. Codeforces Codeforces Round #484 (Div. 2) D. Shark

    Codeforces Codeforces Round #484 (Div. 2) D. Shark 题目连接: http://codeforces.com/contest/982/problem/D ...

  5. 分享几个写 demo 的思路

    好久没有动笔,最近发现了一个新的写 demo 的思路,非常有意思.仔细一想,自己仿佛积累了不少写 demo 的思路和想法,总结一下,抛砖引玉. 本文所说 demo 主要分以下三种: 本地 demo 外 ...

  6. c语言构建哈希表

    /*哈希查找 *哈希函数的构造方法常用的有5种.分别是: *数字分析法 *平方取中法 *分段叠加 *伪随机数 *除留取余法 *这里面除留取余法比较常用 *避免哈希冲突常用的方法有4种: *开放定址法( ...

  7. azure cosmos db (mongo DB)

    使用.net mongo的操作类操作azure(微软云)cosmosdb时,发现在做delete的操作的时候可以传一个文档对象,但是最后这个文档会解析成具体的sql语句,而当文档特别大时这样就出先了转 ...

  8. Linux 搜某个文件里关键字的上下500行到执行文件里

    Linux 搜某个文件里关键字的上下500行到执行文件里grep '300000111110' -C 500 ./saastom7061_APP3/logs/sass.log >/app/saa ...

  9. Slot使用

    1.组件中有单个或多个未命名slot标签时,如下:<Child><span style=”color:red;”>hello world</span></Ch ...

  10. 去掉字符空格js

    1. 去掉字符串两端的空格 String.prototype.trim = function () { return this.replace(/(^\s*)|(\s*$)/g, "&quo ...