ten sentences(71-80)

简介:

71, Well, it depends. 噢,看情况吧

72. we are all for it.   我们全部同意

73. What a good deal!真便宜

74. What should I do?  我该怎么办

75. You asked for it    你自讨苦吃

76. Don't count on me 别指望我

77. Don't fall for it       不要上当

78. Don't let me down 不要让我失望

79. I beg your pardon  请你原谅

80. I beg your pardon? 请你再说一遍

本文转自敏捷的水博客园博客,原文链接http://www.cnblogs.com/cnblogsfans/archive/2008/02/27/1084223.html如需转载请自行联系原作者


王德水

相关文章
|
6月前
|
机器学习/深度学习 自然语言处理 算法
Bag-of-Words(BoW)
Bag-of-Words(BoW)
|
算法
LeetCode 334. Increasing Triplet Subsequence
给定一个未排序的数组,判断这个数组中是否存在长度为 3 的递增子序列。 数学表达式如下: 如果存在这样的 i, j, k, 且满足 0 ≤ i < j < k ≤ n-1, 使得 arr[i] < arr[j] < arr[k] ,返回 true ; 否则返回 false 。
92 0
LeetCode 334. Increasing Triplet Subsequence
【LeetCode】Increasing Triplet Subsequence(334)
  Given an unsorted array return whether an increasing subsequence of length 3 exists or not in the array.
101 0