()菜具有抵抗肠胃癌的功能。

题型:填空题

问题:

()菜具有抵抗肠胃癌的功能。

考点:美食知识竞赛美食知识竞赛题库
题型:填空题

下列说法:①5是125的立方根;②±3是27的立方根:③-2.5是-15.625的立方根;④(-4)3的立方根是-4.其中正确的有______.

题型:填空题

1959——1961年,国家和人民面临新中国成立以来前所未有的严重经济困难。出现这一情况的原因有

①党和人民对我国社会主义所处的发展阶段认识不足

②对如何建设社会主义缺少经验,又急于求成,忽视了客观的经济规律  

③“大跃进”和人民公社化运动

④“左”的错误在全国各地严重泛滥

⑤高指标、瞎指挥、浮夸风和“ * * ”风  

⑥自然灾害[ ]

A、①②③④⑤⑥                 

B、②④⑤⑥   

C、①②③④⑤                  

D、①③④⑤

题型:填空题

灭火的原理有:____、____和_______。

题型:填空题

电影《星际穿越》里的黑洞还需要辅以白洞(如果确实存在),才能让人类的飞船来回往返。

题型:填空题

阅读以下说明和C++程序,将应填入 (n) 处的字句写在对应栏内。
[说明]
下面程序是为汽车市场编制的一个程序的一部分。其中automobile是基类。
[C++程序]
//Auto.h
#ifndef AUTO_H
#define AUTO_H
class automobile

(1):
int miles_per_gallon; //汽车每加仑行驶公里数
float fuel_capacity; //油箱容积
public:
void initialize(int in_mpg,int in_fuel);
int get_mpg(void);
float get_fuel(void);
float travel_distance(void);

#endif
//Auto.cpp
#include"auto.h"
void automobile::initialize(int in_mpg,float in fuel)

miles_per_gallon=in_mpg;
fuel_capacity=in_fuel;
)
int automobile::get_mpg() //提供一辆特定汽车每加仑公里数
return miles per_gallon;
float automobile::get_fuel() //提供油箱容积
return fuel_capacity;
float automobile::travel_distance()
return (2)
//car.h
#ifndef CAR_H
#define CAR_H
#include"auto.h"
class car: (3)

int Total_doors;
public:
void initialize(int in_mpg,float in_fuel,int doors=4);
int doors(void);
;
#endif
//car.cpp
#include"car.h"
void car::initialize(int in_mpg,float in_fuel,int door)

Total_doors=door;
miles_per_galion=in_mpg;
fuel_capacity=in_fuel;

int car::doors(void)
return Total doors;
//Allauto.cpp
#include
#include"auto.h"
#include"car.h"
int main()

car sedan;
sedan.initialize(24,20.0,4);
tout<<"The sedan can travel"<< (4) <<"miles.\n";
cout<<"The sedan has"<< (5) <<"doors.\n";
return 0;

更多题库