PHRASE 与(某人)初次相识;结识(某人)When you make someone's acquaintance, you meet them for the first time and get to know them a little.

I first made his acquaintance in the early 1960s...

我与他初次相识是在20世纪60年代早期。

ADJ If something is adequate, there is enough of it or it is good enough to be used or accepted. 足够的

例:

One in four people worldwide are without adequate homes.

世界上1/4的人没有足够的住房。

ADJ-GRADED 可取的;明智的;适当的If you tell someone that it is advisable to do something, you are suggesting that they should do it, because it is sensible or is likely to achieve the result they want.

Because of the popularity of the region, it is advisable to book hotels or camp sites in advance...

鉴于该地区很受人们青睐,最好提前预订旅馆或宿营地。

He will announce tonight that he is resigning from office...

他将于今晚宣布辞职。

VERB 成功做到;设法做到If you contrive to do something difficult, you succeed in doing it.

The orchestra contrived to produce some of its best playing for years.

这支管弦乐队呈现了精彩的演奏,堪称其多年来的巅峰演奏。

to forgive someone and be friendly with them again after an argument or disagreement

和解,言归于好

They kissed and made up, as usual.像往常一样,他们亲吻和好了。

VERB 扔;抛;掷If you toss something somewhere, you throw it there lightly, often in a rather careless way.

He screwed the paper into a ball and tossed it into the fire...

他把纸揉成一团扔进火里。

Not bad at all, considering that the share price on the day before his departure was slightly less than it was when he took the job.

考虑到他离职前公司的股票价格只比他上任时低一点,这个结果完全不那么糟糕。

made his acquaintance|adequate|advisable|announce|contrived to|made up|toss|considering that的更多相关文章

  1. Gradle 1.12用户指南翻译——第四十二章. Announce插件

    本文由CSDN博客万一博主翻译,其他章节的翻译请参见: http://blog.csdn.net/column/details/gradle-translation.html 翻译项目请关注Githu ...

  2. CF1091E New Year and the Acquaintance Estimation

    题目地址:CF1091E New Year and the Acquaintance Estimation 首先,易知 \(ans\) 的奇偶性与所有给出的数的和的奇偶性相同 其次,易证 \(ans\ ...

  3. Codeforces 1091E New Year and the Acquaintance Estimation Erdős–Gallai定理

    题目链接:E - New Year and the Acquaintance Estimation 题解参考: Havel–Hakimi algorithm 和 Erdős–Gallai theore ...

  4. addict, address, adequate.四级

    addict addiction – a biopsychosocial [生物社会心理学的 bio-psycho-social] disorder characterized by persiste ...

  5. addict, address, adequate

    addict Addiction is a biopsychosocial disorder characterized by repeated use of drugs, or repetitive ...

  6. Codeforces 1091E New Year and the Acquaintance Estimation [图论]

    洛谷 Codeforces 思路 有一个定理:Erdős–Gallai定理. 然后观察样例,可以猜到答案必定是奇偶性相同的一段区间,那么二分左右端点即可. 定理和这个猜测暂时都懒得学/证,留坑. #i ...

  7. Automatic Text Difficulty Classifier Assisting the Selection Of Adequate Reading Materials For European Portuguese Teaching --paper

    the system uses existing Natural Language Processing (NLP) tools, a parser and an hyphenator, and tw ...

  8. CET4词汇

    abandon vt.丢弃:放弃,抛弃 ability n.能力:能耐,本领 abnormal a.不正常的:变态的 aboard ad.在船(车)上:上船 abroad ad.(在)国外:到处 ab ...

  9. A Study of WebRTC Security

    转自:http://webrtc-security.github.io/ A Study of WebRTC Security Abstract Web Real-Time Communication ...

随机推荐

  1. VMware DRS部分知识点

    主机添加到集群中,不需要维护模式(有虚拟机开机状态时也可以添加进去). 主机从集群中移除,需要主机进入维护模式. HA和DRS 全自动 当设置虚拟机必须在主机上时 DRS优先级大于HA 就算主机挂了H ...

  2. String 字符串拼接

    字符串拼接有两个方法 第一中 var sad = "happy" var variable = "you"+sad +"" variable ...

  3. MySQL--基础SQL--DCL

    DCL语句主要是DBA用来管理系统中的对象权限时使用,一般的开发人员很少使用. 1.创建一个数据库用户在z1,具有对sakila数据库中所有表的SELECT/INSERT权限: GRANT SELEC ...

  4. 如何实现MVC ActionResult 返回类型为JavaScriptResult

    必需的js引用文件 <script src="~/Scripts/jquery.unobtrusive-ajax.js"></script>@Scripts ...

  5. jquery如何获取div下ul的某个li

    $('div ul').each(function(){ alert($(this).find('li').eq(x)) }) $("div ul li:eq(1)")// $(& ...

  6. 标准库模块——shutil模块

    shutil.rmtee 删除目录及以内的所有文件. import shutil shutil.rmtree(r'D:\python\222') #包括222在内的所有文件全部删除.

  7. spring中的Filter使用

    https://blog.csdn.net/bibiwannbe/article/details/81302920

  8. ruoyi ShiroUtils

    package com.ruoyi.framework.util; import org.apache.shiro.SecurityUtils; import org.apache.shiro.cry ...

  9. HNOI2018/AHOI2018 游戏

    这题放过了暴力其实就没啥意思了 虽然暴力复杂度很玄学,但是思维水平确实没啥 Description link 题意概述:现在有一条长度为 \(n\) 的链,有些边是有限制的 限制为能到某个点,才能经过 ...

  10. C语言 指针在函数传参中的使用

    int add(int a, int b)   //函数传参的时候使用了int整型数据,本身是数值类型.实际调用该函数时,实参将自己拷贝一份,并将拷贝传递给形参进行运算.实参自己实际是不参与运算的.所 ...