认定追越的条件是()。 A.一机动船正从另一机动船正横后大于22.5°的某一方向 B

题型:单项选择题

问题:

认定追越的条件是()。

A.一机动船正从另一机动船正横后大于22.5°的某一方向

B.后船赶上,超过前船

C.可能构成碰撞危险时

D.以上缺一不可

考点:内河船员考试避碰与信号避碰与信号题库
题型:单项选择题

【说明】 以下【C++程序】实现一个简单的小型复数类MiniComplex,该复数类能进行输入、输出、复数的加法、减法、乘法和除法运算,还可以进行复数的相等比较。【C++程序】#ifndef H_MiniComplex#define H_MiniComplex#include <iostream>using namespace std;class MiniComplex{ public: //重载流插入和提取运算符 (1) ostream&operator<<(ostream &osObject,const MiniComplex&complex){ osObject<<"("<<complex.realPart<<"+"<<complex.imagPart<<"i"<<")"; return osObject; } (2) istream&operator>>(istream&isObject, MiniComplex&complex){ char ch; isObject >>complex.realPart>>ch>>complex.imagPart>>ch; return isObject; } MiniComplex(double real=0,double imag=0); //构造函数 MiniComplex operator+(const MiniComplex&otherComplex)const; //重载运算符+ MiniComplex operator-(const MiniComplex&otherComplex)const; //重载运算符- MiniComplex operator*(const MiniComplex&otherComplex)const; //重载运算符* MiniComplex operator/(const MiniComplex&otherComplex)const; //重载运算符/ bool operator==(const MiniComplex&otherComplex)const; //重载运算符== private : double (3) ; double imagPart;};#end if#include "MiniComplex.h"bool MiniComplex::operator==(const MiniComplex&otherComplex)const{ return(realPart==otherComplex.realPart&&imagPart==ortherComplex.imagPart);}MiniComplex::MiniComplex(double real,double imag){ realPart== real;imagPart==imagPart;}MiniComplex MiniComplex::operator+(const MiniComplex&otherComplex)const{ MiniComplex temp; temp.realPart = realPart+ortherComplex. realPart; temp.imagPart = imagPart +ortherComplex. imagPart; return temp;} (4) { MiniComplex temp; temp.realPart= realPart-ortherComplex. realPart; temp.imagPart = imagPart-ortherComplex. imagPart; return temp;}MiniComplex MiniComplex::operator*(const MiniComplex&otherComplex)const{ MiniComplex temp; temp.realPart = (realPart*ortherComplex. realPart)-(imagPart *ortherComplex.imagPart); temp.imagPart = (realPart*ortherComplex. imagPart)+(imagPart *ortherComplex.realPart); return temp;}MiniComplex MiniComplex::operator/(const MiniComplex&otherComplex)const{ MiniComplex temp; float tt; tt=1/(ortherComplex.realPart*ortherComplex.realPart+ortherComplex.imagPart *ortherComplex. imagPart); temp.realPart=((realPart*ortherComplex, realPart)+(imagPart *ortherComplex. imagPart))*tt; temp.imagPart =((imagPart *ortherComplex. realPart)-(realPart*ortherComplex. imagPart))*tt; return temp;}#include <iostream>#include <MiniComplex.h>using namespace std;int main(){ MiniComplex numl(23, 34),num2(56, 35); cout<<"Initial Value of num1="<<num1<<"\n Initial Value of num2="<<num2<<end1; cout<<num1<<"+"<<num2<<"="<<num1+num2<<end1; //使用重载的加号运算符 cout<<num1<<"-"<<num2<<"="<<num1-num2<<end1; //使用重载的减号运算符 cout<<num1<<"*"<<num2<<"="<<num1*num2<<end1; //使用重载的乘号运算符 cout<<num1<<"/"<<num2<<"="<<num1/num2<<end1; //使用重载的除号运算符 (5) ;}

题型:单项选择题

梅毒所导致的眼部病变有()

A.基质性角膜炎

B.Marcus-Gunn瞳孔

C.Argyll-Robertson瞳孔

D.虹膜睫状体炎

E.椒盐样眼底

题型:单项选择题

我国南方形成稻麦两熟制是在()时期。

题型:单项选择题

纳米材料即为含有颗粒尺寸在0.1~100nm范围内的材料。

题型:单项选择题

2011年3月28日,江苏省文化产业和文化科技工作会议在南京举行。随着科学技术的飞速发展,科技创新与文化产业的关联度越来越高,如何更好地利用科技创新的力量,推动我国文化产业发展,值得深入思考。回答下列各题。

互联网集文字、声音、图像于一体,构成一种立体化的传播形态,在吸引众多网民加入其中的同时,还造就了独特的网络文化。网络文化以其高度的综合性,突破了简单文字或静态图像的局限;互联网的全球化拓展,使网络文化具备了吸取世界各地文化成果的可能;网络技术所提供的虚拟、互动功能,更促成多元异质文化的碰撞、融汇,并使之成为网络文化的重要方面。这说明()

①科学技术的进步,是促进文化发展的重要因素

②现代信息技术的运用,使收集、选择、传递文化资源的手段发生根本变革

③文化只有借助于现代信息技术才能发展

④科技的发展决定着文化的发展方向

A.①④

B.②③

C.①②

D.③④

更多题库