ADJ-GRADED 感到宽慰的;感到安心的;宽心的If you are relieved, you feel happy because something unpleasant has not happened or is no longer happening.

We are all relieved to be back home...

回到家里我们都感到安心了。

An auction is a public sale where goods are sold to the person who offers the highest price.

Lord Salisbury bought the picture at auction in London some years ago...

几年前,索尔兹伯里勋爵在伦敦拍得了这幅画。

VERB 估算;估计;推算;预料If you calculate the effects of something, especially a possible course of action, you think about them in order to form an opinion or decide what to do.

I believe I am capable of calculating the political consequences accurately...

我觉得我能准确预料此事的政治后果。

N-COUNT (社会、政治)运动,活动A campaign is a planned set of activities that people carry out over a period of time in order to achieve something such as social or political change.

During his election campaign he promised to put the economy back on its feet...

他在竞选时许诺将重振经济。

Apacs has launched a campaign to improve the training of staff.

雅拍体育用品公司开展了加强员工培训的活动。

How much do you charge for your mushrooms?

你的蘑菇要什么价钱?

Chelsea's private chartered BMI flight was unable to leave Aberdeen airport to pick the squad up at Newcastle, so they were stranded.

切尔西的私人包机航班BMI无法离开奥博丁机场,也无法到纽卡去接球队,所以切尔西被困了。

  1. helsea's private chartered BMI flight was unable to leave Aberdeen airport to pick the squad up at Newcastle, so they were stranded.

    切尔西的私人包机航班BMI无法离开奥博丁机场,也无法到纽卡去接球队,所以切尔西被困了。

    blog.sina.com.cn

  2. HSBC and Standard Chartered, whose businesses are moreinternationally focused, had never been expected to take part.

    汇控和渣打一直以来更注重国际化发展,因此外界从不认为他们会加入政府救援计划。

    cn.reuters.com

  3. The U. S. State Department said a chartered ferry with room forabout 600 passengers was due to leave Tripoli shortly for Malta.

    美国国务院则表示,美国包租的一艘载客约600人的客轮,将离开的黎波里,驶往马耳他。

    cn.reuters.com

  4. Standard Chartered is one of the very few foreign banks to be allowed to provide Renminbi services in both Shanghai andShenzhen.

    渣打银行是少数获准在上海和深圳同时提供人民币服务的外资银行之一。

    rain-sift.spaces.live.com

relieved|auction|calculate|campaign|charge for |chartered的更多相关文章

  1. The partial charge density (1)

    ============================================================================================= The pa ...

  2. ural1316 Electronic Auction

    Electronic Auction Time limit: 0.5 secondMemory limit: 64 MB There is a deficit in cast-iron pigs in ...

  3. 关于Advertising Campaign

    Advertise Campaigns 是指为了传播企业创意或者宣传主题而采取的一些列的整合营销(IMC)活动,也称为广告战役.广告战役主要在一段明确的时间内,通过不同的媒体渠道投放广告,现在经常会整 ...

  4. 维克里拍卖 Vickrey auction

    https://en.wikipedia.org/wiki/Vickrey_auction 维克里拍卖(Vickrey auction),即次价密封投标拍卖(Second-price sealed-b ...

  5. 【BZOJ-1974】auction代码拍卖会 DP + 排列组合

    1974: [Sdoi2010]auction 代码拍卖会 Time Limit: 10 Sec  Memory Limit: 64 MBSubmit: 305  Solved: 122[Submit ...

  6. [转] PHP计算两个坐标之间的距离, Calculate the Distance Between Two Points in PHP

    Calculate the Distance Between Two Points in PHP There are a lot of applications where it is useful ...

  7. CoreException: Could not calculate build plan: Plugin org.apache.maven.plugins:maven-compiler-plugin:3.1 or one of its dependencies could not be resolved

    CoreException: Could not calculate build plan: Plugin org.apache.maven.plugins:maven-compiler-plugin ...

  8. maven -- 问题解决(二)解决“Could not calculate build plan”问题

    错误提示如下:(eclipse+maven) Could not calculate build plan: Failure to transfer org.apache.maven.plugins: ...

  9. 线段树 + 矩阵 --- ZOJ 3772 Calculate the Function

    Calculate the Function Problem's Link:   http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCod ...

随机推荐

  1. Neo4j安装配置(mac)

    Neo4j安装配置(mac) 1.下载APP 注意:无需配置变量 下载地址:https://neo4j.com/download/ 2.安装程序并启动 3.创建数据库(local) 选择版本 4.启动 ...

  2. 把Android studio的日志导入目标文件中

    最好是在Android studio的命令行工具中进行命令操作. adb logcat -v time > /Users/z/log.txt adb logcat -v time > /U ...

  3. PAT Advanced 1123 Is It a Complete AVL Tree (30) [AVL树]

    题目 An AVL tree is a self-balancing binary search tree. In an AVL tree, the heights of the two child ...

  4. 斐波那契数列 yield 和list 生成

    def fab_demo4(max): a,n,b = 0,0,1 while n < max: yield b # 生成器走到这一步返回b,需要再次调用才能继续执行 a,b = b,a+b n ...

  5. UML-领域模型的精化

    拙劣的分类和错误的概括是混乱生活的祸根.--H.G.Wells的总结 1.is-a原则 子类定义的成员变量.方法与超类必须一致.即:不能多,也不能少. 子类是“一种”超类.CreditPayment是 ...

  6. 踩一踩win7安装neo4j的坑

    本文使用zip解压方式安装,下载社区版zip 解压到喜欢的文件夹,然后配置环境变量NEO4J_HOME=D:\neo4j-community-3.5.5(自己的解压目录) 配置Path=%NEO4J_ ...

  7. idea指定启动参数、环境变量

    1.  点击Edit Configurations 2 # VM Arguments 是设置的虚拟机的属性 # VM options # 环境变量参数 这里需要指定-D参数 -server -XX:M ...

  8. C#-类型转换和引用转换

    对象的引用可以被: 隐式地向上转换 显示的向下转换 向上转换 向上转换是指一个从一个基类指向一个子类: House house = new House(); Asset asset = house; ...

  9. 计蒜客 引爆炸弹(DFS、并查集)

    在一个 n×m 的方格地图上,某些方格上放置着炸弹.手动引爆一个炸弹以后,炸弹会把炸弹所在的行和列上的所有炸弹引爆,被引爆的炸弹又能引爆其他炸弹,这样连锁下去. 现在为了引爆地图上的所有炸弹,需要手动 ...

  10. Python笔记_第三篇_面向对象_8.对象属性和类属性及其动态添加属性和方法

    1. 对象属性和类属性. 我们之前接触到,在类中,我们一般都是通过构造函数的方式去写一些类的相关属性.在第一次介绍类的时候我们把一些属性写到构造函数外面并没有用到构造函数,其实当时在写的时候,就是在给 ...