短语:fire on all cylinders

fire on all cylinders,意思是开足马力。


例句:

But if I took short, rejuvenating breaks, I’d allow my body and mind to recover and regain ability to fire on all cylinders.
但是如果我进行了短期,恢复性休息,就可以使我的身体和精神恢复到点燃所有的汽缸。


But in those years the global economy was booming, The German export machine was firing on all cylinders, easily gobbling up the extra imports from China in 2007 and 2008.
但是过去几年间,全球经济飞速增长。 2007年和2008年,德国的机械出口行业一直开足马力地生产,轻松消化了来自中国的额外进口。


The weakness in the Greek economy and its big deficits should be expected when Germany's export machine is firing on all cylinders.
德国开足了马力出口时,希腊经济疲弱以及庞大的赤字应该是可以预见的。


Then, if he starts firing on all cylinders and Remy’s scoring goals, Newcastle will be a very dangerous proposition.
接着,如果他和雷米开足马力进球,纽卡斯尔将会变得非常危险。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
下面是代码实现: ```cpp #include <iostream> #include <string> using namespace std; class Vehicle { public: Vehicle(string n, string c, int d, int cy, string t, float f): name(n), color(c), doors(d), cylinders(cy), transmission(t), fuel(f) {} virtual ~Vehicle() {} virtual void horn() = 0; virtual void print() { cout << "Name: " << name << endl; cout << "Color: " << color << endl; cout << "Number of doors: " << doors << endl; cout << "Number of cylinders: " << cylinders << endl; cout << "Transmission type: " << transmission << endl; cout << "Fuel level: " << fuel << endl; } protected: string name; string color; int doors; int cylinders; string transmission; float fuel; }; class Taxi: public Vehicle { public: Taxi(string n, string c, int d, int cy, string t, float f): Vehicle(n, c, d, cy, t, f) {} void horn() { cout << "beep beep!" << endl; } }; class Truck: public Vehicle { public: Truck(string n, string c, int d, int cy, string t, float f): Vehicle(n, c, d, cy, t, f) {} void horn() { cout << "HOOOONK!" << endl; } }; int main() { Vehicle* vehicles[2]; vehicles[0] = new Taxi("Taxi", "yellow", 4, 6, "5", 3.3); vehicles[1] = new Truck("Truck", "black", 2, 16, "8", 7.54); for(int i = 0; i < 2; ++i) { vehicles[i]->print(); vehicles[i]->horn(); } return 0; } ``` 输出结果: ``` Name: Taxi Color: yellow Number of doors: 4 Number of cylinders: 6 Transmission type: 5 Fuel level: 3.3 beep beep! Name: Truck Color: black Number of doors: 2 Number of cylinders: 16 Transmission type: 8 Fuel level: 7.54 HOOOONK! ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值