1. Absolutely! 毫无疑问!

2. Adorable! 可爱极了!

3. Amazing! 太神奇了!

4. Anytime! 随时吩咐!

5. Almost! 差不多了!

6. Awful! 好可怕啊!

7. Allow me! 让我来!

8. Baloney! 胡扯!荒谬!

9. Bingo! 中了!

10. Boring! 真无聊!

11. Bravo! 太棒了!

12. Bull*! 胡说!

13. Correct! 对的!

14. Crazy! 疯了!

15. *! 该死的!(不用说你们也应该知道是什么bad word )

16. Deal! 一言为定!

17. Definitely! 当然!

18. Disgusting! 好恶心啊!

19. Willingly! 很乐意!

20. Exactly! 完全正确!

21. Well? 怎么样?

22. Fantastic! 妙极了!

23. Fifty-fifty! 一半对一半!(半斤八两)

24. Fresh! 好有型!帅极了!

25. Gorgeous! 美极了!

26. Great! 太好了!

27. Hopefully! 希望如此!

28. Horrible! 好可怕!

29. Hot! 好辣!

30. Hurray! / Hurrah! 万岁!

31. Imagine! 想想看!

32. Impossible! 不可能吧!

33. Impressive! 很感人,永生难忘!

34. Incredible! 不可思议!

35. Indeed? 真的?

36. Listen! 听着!

37. Lousy! 差劲!

38. Now! 现在就做!

39. Objection! 我抗议!

40. Outrageous! 不得了!

41. Perfect! 很完美!

42. Please! 拜托了!

43. Probably! 很可能!

44. Rats! 差劲!

45. Relax! 放轻松!

46. Right! 对的!

47. Satisfied? 满意了吗?

48. So so. 马马虎虎!

49. Still? 仍是这样?

50. Stingy! 小气鬼!

51. Superb! 棒极了!

52. Surprise! 给你一个惊喜!

53. Terrible! 好可怕!

54. Terrific! 了不起的!

55. Try! 去试一下!

56. Unbelievable! 难以置信!

57. Understand? 明不明白?

【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 ...

随机推荐

  1. 极光推送配置(Android Studio),亲测有效

    进行到这里就可以接收到通知了,但是如果你还想根据接收的消息做点什么 step8: public class MyReceiver extends BroadcastReceiver { private ...

  2. 清理tomcat缓存

    解决方案:删除work目录的内容,注意不能删除work目录,不然会出现404错误 rm -rf /usr/local/tomcat/work/*

  3. C、C++ static 的作用

    1.隐藏 当同时编译多个文件时,所有未加static关键字的全局变量和函数都具有全局可见性. 例如:同时编译两个源文件 //ghz.c #include <stdio.h> char a ...

  4. C - 你经历过绝望吗?两次! 【地图型BFS+优先队列(障碍物)】

    4月16日,日本熊本地区强震后,受灾严重的阿苏市一养猪场倒塌,幸运的是,猪圈里很多头猪依然坚强存活.当地15名消防员耗时一天解救围困的“猪坚强”.不过与在废墟中靠吃木炭饮雨水存活36天的中国汶川“猪坚 ...

  5. hdu6191(树上启发式合并)

    hdu6191 题意 给你一棵带点权的树,每次查询 \(u\) 和 \(x\) ,求以 \(u\) 为根结点的子树上的结点与 \(x\) 异或后最大的结果. 分析 看到子树,直接上树上启发式合并,看到 ...

  6. jQuery的实用技巧

    1.禁用页面的右键菜单 $(document).ready(function(){ $(document).bind("contextmenu",function(e){ retu ...

  7. 某dalao贼快的hash?

    #include<map> #include<cstdio> #include<iostream> #include<ext/pb_ds/assoc_cont ...

  8. 洛谷 P3690 Link Cut Tree

    题目背景 动态树 题目描述 给定N个点以及每个点的权值,要你处理接下来的M个操作.操作有4种.操作从0到3编号.点从1到N编号. 0:后接两个整数(x,y),代表询问从x到y的路径上的点的权值的xor ...

  9. [POI2018]Plan metra

    题目大意: 一棵$n(n\le5\times10^5)$个结点的树,每条边的边权均为正整数,告诉你$2\sim n-1$号结点到$1$号点和$n$号点的距离$d1[i]$和$d2[i]$.求是否存在这 ...

  10. BUG:Yii登录时 101 net::ERR_CONNECTION_RESET

    Bug描述:YII web入口登录,无法登录一直等待,最终重定向 原因:设置的默认路由DefauRoute中的控制器中有错误,导致无法跳转找指定的路由规则 解决方案:这就多亏了SourceTree了, ...