By virtue of|sustain|post |scrape off |stretch|access to|take into account of|exploit|hasten|blur |idle|bored her to|account for|accused of|cruelty

By virtue of this superior quality, this product is often sold out of stockin many areas.

我们的产品因其优秀的质量,在很多地区经常脱销。

The soil in this part of the world is not rich enough to sustain a large population.

这里的土地不够肥沃,无法供养大量的人口。

She had earlier resigned her post as President Menem‘s assistant...

她早些时候辞去了梅内姆总统助理一职。

We‘ll have to scrape the snow off the car before we go out in it.

我们开车出去之前必须先把车上的积雪扫掉。

"I‘m so tired," she said, yawning and stretching.

“我太累了,”她打着呵欠伸了个懒腰说。

The facilities have been adapted to give access to wheelchair users.

这些设施已经改造过以方便轮椅使用者进入

We take into account of every factor on the judgment of defects.

The main reason was that fishermen were still able to exploit theirrelatively new ability to find and catch their prey.

重要的原因是捕鱼者仍然有能力利用他们相关的发现和捕捞的新技术。

VERB 加速,加快(常指不愉快的事)If you hasten an event or process, often an unpleasant one, you make it happen faster or sooner.

But if he does this, he may hasten the collapse of his own country.

但是如果他这样做,就有可能加速自己国家的崩溃。

N-COUNT 模糊形状;模糊的区域A blur is a shape or area which you cannot see clearly because it has no distinct outline or because it is moving very fast.

Out of the corner of my eye I saw a blur of movement on the other side of the glass...

从眼角余光中我看到玻璃的另一边隐约有东西在移动。

Her face is a blur.

她的脸模糊不清。

ADJ 无事可做的;闲散的If people who were working are idle, they have no jobs or work.

Employees have been idle almost a month because of shortages.

由于原料短缺,员工们已将近一个月无事可做。

He looks out of the windows from which she looked out, not longago, upon the weather that bored her to death.

他望着窗外,而不久以前,夫人也在这里望着窗外那使她烦得要死的天气。

要综合考虑各方面因素对缺陷进行评判。

Students account for the vast majority of our customers.

我们的顾客绝大多数是学生。

He‘s been accused of robbery/murder.

他被指控犯有抢劫/谋杀罪。

"I think you know, " said Dumbledore. "Think back. Remember what he did, in his ignorance, in his greed and his cruelty. "

“我认为你是知道的,”邓布利多说,“回想一下,想想他因为无知、贪婪和残酷所做的事情。”

原文地址:https://www.cnblogs.com/yuanjingnan/p/11371154.html

时间: 2024-10-09 02:33:58

By virtue of|sustain|post |scrape off |stretch|access to|take into account of|exploit|hasten|blur |idle|bored her to|account for|accused of|cruelty的相关文章

PLSQL Coding Standard

Naming and Coding Standards for SQL and PL/SQL "The nice thing about standards is that you have so many to choose from." - Andrew S Tanenbaum Introduction This document is mentioned in a discussion on the OTN forums. One of the first comments be

Windows Error Codes

http://www.briandunning.com/error-codes/?source=Windows Windows Error Codes List All Error Codes | Search Errors: FileMaker Error Codes Lasso Error Codes MySQL Error Codes Windows System Errors About this databaseThis is a free public resource. It is

Python之global

1 Global The global statement and its nonlocal cousin are the only things that are remotely like declaration statements in Python. They are not type or size declarations; they are namespace declarations. The global statement tells Python that a funct

Cross-Domain Security For Data Vault

Cross-domain security for data vault is described. At least one database is accessible from a plurality of network domains, each network domain having a domain security level. The at least one database includes at least one partitioned data table tha

helm的使用和redis、mq等公共组件的容器化实践

Helm的使用 1. Helm简介: 1. Helm的概念   Helm是Kubernetes的一个包管理工具,用来简化Kubernetes应用的部署和管理.可以把Helm比作CentOS的yum工具.  Helm有如下几个基本概念: Chart: 是Helm管理的安装包,里面包含需要部署的安装包资源.可以把Chart比作CentOS yum使用的rpm文件.每个Chart包含下面两部分: 包的基本描述文件Chart.yaml 放在templates目录中的一个或多个Kubernetes man

PAT-B 1015. 德才论(同PAT 1062. Talent and Virtue)

1. 在排序的过程中,注意边界的处理(小于.小于等于) 2. 对于B-level,这题是比較麻烦一些了. 源代码: #include <cstdio> #include <vector> #include <algorithm> using namespace std; struct People { int m_id; int m_virtue; int m_talent; People(int id, int virtue, int talent): m_id(id

pat1062. Talent and Virtue (25)

1062. Talent and Virtue (25) 时间限制 200 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Li About 900 years ago, a Chinese philosopher Sima Guang wrote a history book in which he talked about people's talent and virtue. According to his theory, a

PAT1062. Talent and Virtue

About 900 years ago, a Chinese philosopher Sima Guang wrote a history book in which he talked about people's talent and virtue.  According to his theory, a man being outstanding in both talent and virtue must be a "sage(圣人)"; being less excellen

PAT 1062 Talent and Virtue

#include <cstdio> #include <cstdlib> #include <cstring> #include <vector> #include <algorithm> using namespace std; class Man { public: char id[10]; int talent; int virtue; }; bool mycmp(const Man& a, const Man& b) {