"Are you going all by yourself?" he asked, and I couldn't tell if he was suspicious I had a secret boyfriend or just worried about car trouble.

“你是准备一个人去吗?”他问道,我不能确定他是怀疑我有一个秘密的男友还是只是担心车子的问题。

"Yes."

“是的”

"Seattle is a big city — you could get lost," he fretted.

“Seattle是一个大城市——你可能会迷路,”他担心道。

"Dad, Phoenix is five times the size of Seattle — and I can read a map, don't worry about it."

“爸,Phoenix是Seattle五倍那么大——并且我可以看地图,别担心”

"Do you want me to come with you?"

“你想让我陪你去吗?”

I tried to be crafty as I hid my horror.

我尝试狡猾的隐藏我的恐惧

"That's all right, Dad, I'll probably just be in dressing rooms all day — very boring."

“当然,爸,我可能只是在卖衣服的店里一整天——很无聊的。”

"Oh, okay." The thought of sitting in women's clothing stores for any period of time immediately put him off.

“哦,好吧。”坐在卖女装的商店里一段时间的想让让他立刻退缩了。

"Thanks." I smiled at him.

“谢谢”我笑着对他说。

"Will you be back in time for the dance?"

“你将会准时回来参加舞会吗?”

Grrr. Only in a town this small would a father know when the high school dances were.

emmm。只有在这样小的城镇里一个父亲才会知道高校什么时候会有舞会。

"No — I don't dance, Dad." He, of all people, should understand that — I didn't get my balance problems from my mother.

“不——我不会跳舞,爸。”他应该比其他所有人都明白一件事——我没有从我妈妈那里遗传平衡问题。

He did understand. "Oh, that's right," he realized.

他明白了。“哦,那好吧,”他也意识到了什么。

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

  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——21

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

  8. Chapter 4 Invitations——20

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

  9. Chapter 4 Invitations——19

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

随机推荐

  1. 练习2-1 Programming in C is fun!

    练习2-1 Programming in C is fun! 一 问题描述 本题要求编写程序,输出一个短句“Programming in C is fun!”. 输入格式: 本题目没有输入. 输出格式 ...

  2. python3 替换字符串中指定位置字符

    大家都知道字符串在python中是不可变数据类型,那么我们如何替换字符串中指定位置的字符呢? 字符串转换列表替换并转换解决: def replace_char(string,char,index): ...

  3. docker用法记录

    下载docker镜像 docker pull ubuntu 查看所有docker镜像 docker images 运行docker镜像且进入shell docker run -it ubuntu ba ...

  4. idea在springboot项目中没有【新建JSP选项】的解决方法

    https://blog.csdn.net/qq_26525215/article/details/53726690 转载于CSDN

  5. VB洗牌算法产生随机数组

    算法图示: 运行效果: 详细代码: Option Explicit '洗16张牌(0-15),方便用十六进制显示 Dim Card() As Long Private Sub 洗牌() Dim i&a ...

  6. VB输出数据到EXCEL

    Private Sub Command1_Click() Dim i As Long Dim j As Long , ) As Long Dim xlApp, WS, WB Set xlApp = C ...

  7. C\C++ 内存对齐现象

    前几天一个在自学C语言的小伙伴问了我个问题,C语言结构体储存所占空间为啥和自己预测的不一样.看一下下面这一段代码: struct node{ int num; char ch; }a; printf( ...

  8. Scanner,Random,匿名对象-------------------java基础学习第七天

    1.API 2.Scanner 功能:通过键盘输入数据到程序中. 引用类型的一般使用步骤: 导包 Import 包路径.类名称 只有java.lang 包写的类不需要导包,其他都需要 2.创建 类名称 ...

  9. .net 发布程序时出现“类型ASP.global_asax同时存在于...”错误的解决办法

    web程序发布后,通过浏览器访问程序显示如下的错误信息: 编译器错误消息: CS0433: 类型“ASP.global_asax”同时存在于“c:\WINDOWS\Microsoft.NET\Fram ...

  10. Nginx负载均衡的5种策略(转载)

    Nginx的upstream目前支持的5种方式的分配 轮询(默认) 每个请求按时间顺序逐一分配到不同的后端服务器,如果后端服务器down掉,能自动剔除. upstream backserver { s ...