Phrase       

do somebody a favour

give sb a hand

do something for sb

come to sb aid  帮助某人

what can i do for you? = Is there anything i can do for you? 我可以帮助你吗?

leave sb/sth + adj/adv/v_ing/v_ed(宾语补足语)   eg:leave the door open

confident of sth/doing sth  对做某事非常自信

take the gameble of = take the risk of(冒险做某事)  gamble (n)赌博

the capital of ......的首都  Zheng Zhou is the capital of He Nan.

As we all know,.......    As Chinese we all know  作为中国人我们都知道

As is well-known   As is well-known,China is a great country with a long history.

a short campaign = a quick victory 速战速决

lanch an attack against on 对......发起进攻 China lanches an attack against on American.

armed force army/navy/air force    陆军/海军/空军力量

lie  lay   lain  lying 躺

lie  lied  lied  lying  说谎

lie laid  laid          下蛋

英语中分数的表达式口诀: 分母序数词,分子基数词,分子不为一,分母+s;  eg: 三分之一:  one-third ; 三分之二:  two-thirds;

Proverb 谚语:

Two heads are always better than one  三人行必有我师/三个臭皮匠顶个诸葛亮

Practice makes perfect  熟能生巧

word  单词:

freeze 冻结,冷冻

breeze (n)微风  (v)吹微风

angel  天使

angel 三角

pig 猪  porkling  小猪    duck鸭子    ducking 小鸭

retreat (v)撤退,后退; eg: They wee attacked and forced to retreat. 他们受到攻击,被迫撤退。

invasion 侵犯,入侵,侵略。  invade  武力入侵,侵略,侵占。

conquer 征服   conquest(n)

 

English (一)的更多相关文章

  1. Lesson 14 Do you speak English?

    Text I had an amusing experience last year. After I had left a small village in the south of France. ...

  2. 运行nltk示例 Resource u'tokenizers punkt english.pickle' not found解决

    nltk安装完毕后,编写如下示例程序并运行,报Resource u'tokenizers/punkt/english.pickle' not found错误 import nltk sentence ...

  3. [LeetCode] Reconstruct Original Digits from English 从英文中重建数字

    Given a non-empty string containing an out-of-order English representation of digits 0-9, output the ...

  4. [LeetCode] Integer to English Words 整数转为英文单词

    Convert a non-negative integer to its english words representation. Given input is guaranteed to be ...

  5. leetcode-【hard】273. Integer to English Words

    题目: 273. Integer to English Words Convert a non-negative integer to its english words representation ...

  6. [LeetCode] 423 Reconstruct Original Digits from English

    Given a non-empty string containing an out-of-order English representation of digits 0-9, output the ...

  7. [CareerCup] 17.7 English Phrase Describe Integer 英文单词表示数字

    17.7 Given any integer, print an English phrase that describes the integer (e.g., "One Thousand ...

  8. English随笔1

    英语中的基本五大句型  1.Subject (主语) + Verb (谓语) Li Ming works The accident happened 2.Subject (主语) + Link. V( ...

  9. Leetcode: Reconstruct Original Digits from English

    Given a non-empty string containing an out-of-order English representation of digits 0-9, output the ...

  10. English Literature

    The website links of English Literature,which I wanno recommend to U is based on following. 数据结构 - 知 ...

随机推荐

  1. bzoj3926: [Zjoi2015]诸神眷顾的幻想乡 后缀自动机在tire树上拓展

    题意:有棵树每个点有个颜色(不超过10种),每个节点不超过20个儿子,问你每两点之间的颜色序列不同的有多少种 题解:先建出树,对于每个叶子节点,bfs一遍建在sam上,每次保留当前点在sam上的位置, ...

  2. Centos7.3安装和配置jre1.8转

      在正式环境里 我们可以不安装jdk ,仅仅安装Java运行环境 jre即可: 第一步:下载jre 我们去oracle官方下载下jre http://www.oracle.com/technetwo ...

  3. java面试之谈

    半个多月的找工作时间,不是在去面试路上,就是在面试中,经历了大概有近10家的面试,虽然很多家都是一回了无音讯,对自己收获还是有的,至少让自己认识到了自身基础不牢固和技术知识面的狭隘.之前从事的工作主要 ...

  4. LINQ 常用from

    单个form子句string[] values = { "LINQ学习", "LINQ基本语句", "from子句", "单个fr ...

  5. Leetcode 145

    /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode ...

  6. Git Diff 格式分析

    参考: http://stackoverflow.com/questions/2529441/how-to-read-the-output-from-git-diff https://www.git- ...

  7. OSI七层协议概念详解

    OSI七层模型 相关协议 缩写 应用层 HTTP 超文本传输协议 FTP 文件传输协议 SMTP 简单邮件传输协议 TELNET TCP/IP终端仿真协议 POP3 邮局协议第三版 Finger 用户 ...

  8. Python version 2.7, which was not found in the registry

    在安装部分Python包时会出现问题:明明已经安装了Python2.7,但无法在注册表相关位置找不到,那该怎么感觉该问题呢? 首先检查你的系统位数,位数不同,解决方案不一样. 1)32位系统:在cmd ...

  9. C++解析三

    类的构造函数类的构造函数是类的一种特殊的成员函数,它会在每次创建类的新对象时执行.构造函数的名称与类的名称是完全相同的,并且不会返回任何类型,也不会返回 void.构造函数可用于为某些成员变量设置初始 ...

  10. go中for循环使用多个变量避坑

    go for循环语法为: for expression1, expression2, expression3 { // ... } 使用多个变量时,使用平行赋值,需要留意的是expression3处的 ...