Once upon a time there was a prince who wanted to marry a real princess.
从前,有个王子想和真正的公主结婚。

He looked all over the country.
他找遍了整个国家。

But he could not find the right princess to marry.
但是他没有找到合适的公主结婚。

One stormy night, there was a knock at the castle door.
一个暴风雨的夜晚,城堡的门上响起一阵敲门声。

The king opened the door and saw a wet princess standing at the door.
国王打开了门,看见一个身上潮湿的公主站在门边。

"I am a princess and my coach has broken down," said the princess.
“我是一名公主,我的马车坏了。”公主说。

"Please give me a place to stay tonight."
“今晚请给我一个住的地方。”

The queen did not believe the girl.
王后不相信这个女孩。

"She was all wet and muddy from the rain," the queen thought.
“她全身被雨淋湿了还满身泥泞。”王后想。

"How could she be a real princess?"
“她怎么会是真正的公主呢?”

As a test, the queen piled twenty mattresses on top of each other.
作为测试,王后叠了20张床垫。

Then, under the bottom mattress, she put one tiny pea.
然后,在底部的床垫下,她放了一颗豌豆。

The queen thought that a real princess would be able to feel the pea under all of the mattresses.
王后认为,一个真正的公主应该能感觉到所有床垫下的那颗豌豆。

"This is your room," the queen told the princess.
“这是你的房间,”皇后对公主说。

"Have a nice sleep."
“睡个好觉。”

The next morning, the queen asked the princess if she had a good night's sleep.
第二天早上,皇后问公主是否睡了个好的晚觉。

"The mattresses were very soft; but, it felt as if there was something very hard under all those mattresses." said the princess.
“床垫非常柔软;但是,感觉在所有床垫下面好像有个很硬的东西。”公主说。

"I could not sleep last night."
昨晚我睡不着。

The queen quickly told the prince the news about the princess.
很快,皇后把关于公主的这个消息告诉了王子。

"She must be a real princess!" announced the queen.
“她一定是个真正的公主!”皇后宣布说。

"She could feel the pea under twenty mattresses!"
“她能感觉到20张床垫下面的豌豆”

The prince and the princess were soon married.
王子和公主不久后就结婚了。

They lived happily ever after.
从此,他们快乐地生活着。

The Princess and the Pea,摘自iOS应用Snow White and more stories的更多相关文章

  1. Sleeping Beauty,摘自iOS应用Snow White and more stories

    Once upon a time, there lived a king and queen. 从前,有个国王和王后. They had a beautiful daughter. 他们有一个漂亮的女 ...

  2. The Little Match Girl,摘自iOS应用Snow White and more stories

    Many years ago on a cold and snowy New Year's Eve, a poor little girl was wandering arround on the s ...

  3. Thumbelina,摘自iOS应用Snow White and more stories

    Once upon a time there was a woman who wanted to have a child. 从前,有个想要个孩子的女人. A witch heard her wish ...

  4. Snow White,摘自iOS应用Snow White and more stories

    Once upon a time, there was a land. 从前,有个国度. It was ruled by an evil queen. 它被一位邪恶的女王统治. Every day t ...

  5. IOS委托设计模式(摘自IOS开发指南)

  6. Xamarin Studio在Mac环境下的配置和Xamarin.iOS常用控件的示例

    看过好多帖子都是Win环境装XS,Mac只是个模拟器,讲解在Mac环境下如何配置Xamarin Studio很少,也是一点点找资料,东拼西凑才把Xamarin Studio装在Mac上跑起来,如下: ...

  7. “设计之变”--从iPhone应用到iPad应用

    在做APP的iPad版本设计时,我们常常需要考虑:如何在延续iPhone版本设计特色和优点同时,充分利用iPad的特性更好地进行设计.本文从iPad和iPhone的差异性入手,试图总结这一设计过程中需 ...

  8. Objective-C 中 NULL、nil、Nil、NSNull 的定义及不同

    本文由我们团队的 康祖彬 童鞋撰写,这是他的个人主页:https://kangzubin.cn. 理解"不存在"的概念不仅仅是一个哲学的问题,也是一个实际的问题.我们是有形宇宙的居 ...

  9. 实战UITableview深度优化

    演示项目下载地址:https://github.com/YYProgrammer/YYTableViewDemo 项目里的低性能版是常规写法实现的tableview,高性能版是做了相关优化后的tabl ...

随机推荐

  1. 【MVC5】First Unit Test

    1.控制器测试 注意点: 1.控制器中不要包含业务逻辑 2.通过构造函数传递服务依赖 例:MathController中有一个Add的Action using FirstUnitTest.Servic ...

  2. 扩充STL-编写自己的迭代器

    这里的迭代器能够与STL组件共同工作,是对STL的一种扩充.   自定义迭代器必须提供iterator_traits的五种特性,分别是迭代器类型.元素类型.距离类型.指针类型与reference类型. ...

  3. Appium Android Bootstrap源代码分析之简单介绍

    在上一个系列中我们分析了UiAutomator的核心源代码,对UiAutomator是怎么执行的原理有了根本的了解.今天我们会開始另外一个在安卓平台上基于UiAutomator的新起之秀--Appiu ...

  4. linux路由服务

    本文介绍怎样使用linux创建一台简单的路由server. 主要包含几个參数的设置:ip_forward和rp_filter. 1.开启IP forwarding # 重新启动后失效 $ echo & ...

  5. 谈一谈Http Request 与Http Response

    1.什么是HTTPRequest与HTTP Response? 我们平时打开浏览器,输入网址,点击Enter按键,然后我们想要的网页就呈现在我们的眼前,可是这个过程是怎么实现的呢? 简单来说是这样的: ...

  6. Android基础之使用Fragment控制切换多个页面

    Android官方已经提供了Fragment的各种使用的Demo例子,在我们SDK下面的API Demo里面就包含了Fragment的各种使用例子,需要看Demo的朋友,直接看API Demo那个程序 ...

  7. [转] java代码块 介绍

    //执行顺序:(优先级从高到低.)静态代码块>mian方法>构造代码块>构造方法. 其中静态代码块只执行一次.构造代码块在每次创建对象是都会执行. 1 普通代码块 1 //普通代码块 ...

  8. Sql视图创建语句及修改视图

    create view [dbo].[AllUsers] as select u.UserId, u.Firstname, u.Lastname, u.ts, am.Email, au.UserNam ...

  9. O(n)求素数,求欧拉函数,求莫比乌斯函数,求对mod的逆元,各种求

    筛素数 void shai() { no[1]=true;no[0]=true; for(int i=2;i<=r;i++) { if(!no[i]) p[++p[0]]=i; int j=1, ...

  10. Oracle集群和灾备解决方案介绍

       Oracle本身有各种各样的解决方案,本文主要是对以下几种解决方案做一下简单的梳理. 1. Oracle Rac解决方案. Oracle Rac主要通过两台Oracle服务器来组件集群,提高Or ...