Lesson 109
A good idea
好主意

Listen to the tape then answer this question. What does Jane have with her coffee?
听录音,然后回答问题。喝咖啡时简吃了什么?

CHARLOTTE: Shall I make some coffee, Jane?
JANE: That's a good idea, Charlotte.
CHARLOTTE: It's ready.
Do you want any milk?
JANE: Just a little, please.
CHARLOTTE: What about some sugar?
Two teaspoonfuls?
JANE: No, less than that.
One and a half teaspoonfuls, please.
That's enough for me.
JANE: That was very nice.
CHARLOTTE: Would you like some more?
JANE: Yes, please.
JANE: I'd like a cigarette, too.
May I have one?
CHARLOTTE: Of course.
I think there are a few in that box.
JANE: I'm afraid it's empty.
CHARLOTTE: What a pity!
JANE: It doesn't matter.
CHARLOTTE: Have a biscuit instead.
Eat more and smoke less!
JANE: That's very good advice!

New Word and expressions 生词和短语

idea
n. 主意

a little
少许(用于不可数名词之前)

teaspoonful
n. 一满茶匙

less
adj. (little 的比较级)较少的,更小的

a few
几个(用于可数名词之前)

pity
n. 遗憾

instead
adv. 代替

advice
n. 建议,忠告

参考译文

夏洛特:我来煮点咖啡好吗,简?
简:这是个好主意,夏洛特。
夏洛特:咖啡好了,你要放点奶吗?
简:请稍加一点。
夏洛特:加些糖怎么样?两茶匙行吗?
简:不,再少一些。
请放一勺儿半。
那对我已足够了。
简:太好了。
夏洛特:你再来点吗?
简:好的,请再来一点。
简:我还想抽枝烟。可以给我一枝吗?
夏洛特:当然可以。
我想那个盒子里有一些。
简:恐怕盒子是空的。
夏洛特:真遗憾!
简:没关系。
夏洛特:那就吃块饼干吧。多吃点,少抽点!
简:这是极好的忠告啊!

新概念英语(1-109)A Good Idea的更多相关文章

  1. [新概念英语II 笔记] Lesson 3: Please Send Me a Card

    发现身边很多程序员都能看懂英文技术文章的60%-80%内容,但大家都有一个毛病,就是不会说,不会写作,在逛英文技术社区的时候,想发表点什么评论,总担心自己写的话有错误.究其原因, 我觉得主要原因是因为 ...

  2. 新概念英语(1-47)A cup of coffee

    新概念英语(1-47)A cup of coffee How does Ann like her coffee? A:Do you like coffee, Ann? B:Yes, I do. A:D ...

  3. 新概念英语(1-45)The boss's letter

    新概念英语(1-45)The boss's letter Why can't Pamela type the letter? A:Can you come here a minute, please, ...

  4. 新概念英语(1-43)Hurry up!

    新概念英语(1-43)Hurry up! How do you know Sam doesn't make the tea very often? A:Can you make the tea, Sa ...

  5. 新概念英语(1-41)Penny's bag

    新概念英语(1-41)Penny's bag Who is the tin of tobacco for? A:Is that bag heavy, Penny? B:Not very. A:Here ...

  6. 新概念英语(1-39)Don't drop it!

    新概念英语(1-39)Don't drop it! Where does Sam put the vase in the end ? A:What are you going to do with t ...

  7. 新概念英语(1-35)Our village

    新概念英语(1-35)Our village Are the children coming out of the park or going into it ? This is a photogra ...

  8. 新概念英语(1-32)A fine day

    新概念英语(1-33)A fine day Where is the Jones family? It is a fine day today. There are some clouds in th ...

  9. 新概念英语(1-31)Where's Sally?

    新概念英语(1-31)Where's Sally? Is the cat climbing the tree ? A:Where is Sally, Jack ? B:She is in the ga ...

  10. 新概念英语(1-19)Tired and thirsty

    新概念英语(1-19)Tired and thirsty Why do the children thank their mother? A:What's the matter, children? ...

随机推荐

  1. 记一次线上Curator使用过程JVM栈溢出解决

       为了同学们看起来一目了,特按如下思路进行讲解. 1.出现的场景    2.分析及解决的过程    3.总结 最近公司要使用zookeeper做配置管理(后面简称ZK),然后自己就提前用虚拟机进行 ...

  2. html备战春招の一

    html不是一种编程语言,而是一种标记语言,通过使用标签来标记网页. 对于中文网页需要使用 <meta charset="utf-8"> 声明编码,否则会出现乱码.有些 ...

  3. Python爬取豆瓣音乐存储MongoDB数据库(Python爬虫实战1)

    1.  爬虫设计的技术 1)数据获取,通过http获取网站的数据,如urllib,urllib2,requests等模块: 2)数据提取,将web站点所获取的数据进行处理,获取所需要的数据,常使用的技 ...

  4. Ajax模拟Form表单提交,含多种数据上传

    ---恢复内容开始--- Ajax提交表单.使用FormData提交表单数据和上传的文件(这里的后台使用C#获取,你可以使用Java一样获取) 有时候前台的数据提交到后台,不想使用form表单上传,希 ...

  5. python中的lambda函数用法

    例1:传入多个参数的lambda函数def sum(x,y): return x+y用lambda来实现:p = lambda x,y:x+yprint(4,6) 例2:传入一个参数的lambda函数 ...

  6. 使用async和wait进行异步编程

    本文来源于博客园-钱智慧,转载请注明出处 代码示例 // 要让一个方法成为异步方法: // - async修饰符. // - 返回类型是 Task 或者 Task<T>. 具体来说,如果函 ...

  7. python web开发-flask中日志的使用

    Flask使用日志记录的方式: 初始化flask应用实例 在flask中使用logger,需要初始化一个flask的应用 app = Flask(__name__) 2. 调用logger 直接调用l ...

  8. Java线程中断机制-如何中断线程

    介绍: 对于线程一共分为五个状态:新建状态,就绪状态,阻塞状态,运行状态,死亡状态,有时候把阻塞状态又分为同步阻塞和等待阻塞. 有时想让主线程启动的一个子线程结束运行,我们就需要让这个子线程中断,不再 ...

  9. spy++捕获窗口消息

    打开spy++,窗口截图如下,点击窗口搜索按钮(红框标识) ,如果找不到对应的窗口,鼠标右键刷新即可. 鼠标左键点击窗口搜索图标,按住不放,拖到需要抓取消息的窗口上: spy++会自动在列表中高亮定位 ...

  10. Mycat 安装与启动

    环境准备 安装JDK1.8(必须JDK1.7及更高版本) 安装MySQL 服务安装与说明 下载 MyCAT 编译好的安装包,下载地址为 http://dl.mycat.io/1.6-RELEASE/ ...