更多“carry的复数”相关问题
  • 第1题:

    阅读以下说明和Java 码,将应填入(n)处的字名写在的对应栏内。

    [说明] 编写一个完整的JavaApplet 程序使用复数类Complex 验证两个复数1+2i 和3+4i 相加产生一个新的复数4+6i。

    复数类Complex 必须满足如下要求:

    (1) 复数类Complex 的属性有:

    RealPart: int 型,代表复数的实数部分

    ImaginPart: int 型,代表复数的虚数部分

    (2) 复数类Complex 的方法有:

    Complex():构造函数,将复数的实部和虚部都置0

    Complex (intr,inti):构造函数,形参r为实部的初值,i为虚部的初值。

    ComplexeomplexAdd (Complexa):将当前复数对象与形参复数对象相加,所得的结果仍是一个复数值,返回给此方法的调用者

    String ToString():把当前复数对象的实部、虚部组合成s+ bi 的字符串形式,其中a和b分别为实部和虚部的数据。

    importjava. applet. * ;

    importjava. awt. * ;

    publicclassabcextends Applet

    {

    Complex a, b, c;

    publi cvoid init( )

    {

    a = newComplex(1,2);

    b = newComplex(3,4);

    c = newComplex();

    }

    publievoidpaint (Graphicsg)

    {

    (1)

    g. drawstring( “第一个复数:” + a. toString(), 10,50);

    g. drawstring( “第二个复数:” + b. toString( ), 10,70 );

    g. drawstring( “两复之和:” + c. toString( ), 10,90);

    }

    }

    class Complex

    {

    int RealPart;

    int ImaginPart;

    Complex( ) { (2) }

    Complex( intr , inti)

    { (3) }

    ComplexeomplexAdd (Complexa)

    {

    Complextemp = newComplex( );

    temp. BealPart = RealPart + a. BealPart;

    (4)

    returntemp;

    }

    public StringtoString( )

    { return( RealPart + " + " + ImaginPart + " i "); }

    }


    正确答案:c= a. complexAdd(B); RealPart = 0 ; ImaginPart = 0; RealPart = r; ImaginPart = i; temp. ImaginPart = ImaginPart + a. ImaginPart;
    c= a. complexAdd(B); RealPart = 0 ; ImaginPart = 0; RealPart = r; ImaginPart = i; temp. ImaginPart = ImaginPart + a. ImaginPart;

  • 第2题:

    复数评级制度


    正确答案: 复数评级制度是指,如果评估委托者对某一评级机构的评级结果感到不满意,可以另行选择其他评级机构进行再次评级,而评级结果的利用者也可以在比较选择不同机构的评级结果之后选择自己将利用的评级结果。

  • 第3题:

    Fire drill is ()(执行)once a month.

    • A、carry out
    • B、carried out
    • C、carrying out
    • D、carry on

    正确答案:B

  • 第4题:

    一个复数乘以j等于将该复数顺时针转了90度。


    正确答案:错误

  • 第5题:

    数据压缩编码方法可以分为无损压缩和有损压缩。其中,无损压缩编码的特点是().

    • A、有失真恢复数据、压缩比高
    • B、无失真恢复数据、压缩比高
    • C、有失真恢复数据、压缩比低
    • D、无失真恢复数据、压缩比低

    正确答案:D

  • 第6题:

    Some people like to buy pocket books because it is easy to().

    • A、carry around them.
    • B、carry them around
    • C、carry them with
    • D、carry with them

    正确答案:B

  • 第7题:

    On hearing the fire signal, the crew should proceed immediately to ()their assigned duties.

    • A、carry on
    • B、put out
    • C、carry out
    • D、take off

    正确答案:C

  • 第8题:

    感染复数


    正确答案:指短时间内一个宿主细胞受感染的病毒颗粒数目。

  • 第9题:

    判断题
    英语名词复数是在后面加s,所以man的复数是mans。
    A

    B


    正确答案:
    解析: 暂无解析

  • 第10题:

    问答题
    怎样用复数表示正弦量?为什么要用复数表示?

    正确答案: 用复数的模表示正弦量的最大值(或有效值),用复数的幅角表示正弦量的初相位。
    用复数表示后可使电路计算简单化。
    解析: 暂无解析

  • 第11题:

    单选题
    有如下主题帖表:主题帖(编号C,用户名C,标题C,内容M,发帖时间T,点击数N,回复数N)查询回复数最高的主题帖(可能有多个),正确的SQL语句是(  )。
    A

    SELECT*FROM主题帖WHERE回复数>=(SELECT回复数FROM主题帖)

    B

    SELECT*FROM主题帖WHERE回复数>=ANY(SELECT回复数FROM主题帖)

    C

    SELECT*FROM主题帖WHERE回复数>=SOME(SELECT回复数FROM主题帖)

    D

    SELECT*FROM主题帖WHERE回复数>=ALL(SELECT回复数FROM主题帖)


    正确答案: C
    解析:
    ANY(任意的)和SOME(一些)表示只要子查询中存在符合条件的行,结果就成立;ALL(所有的)表示只有子查询中的所有的行都符合条件,结果才成立。题目要求查询回复数最高的主题帖(可能有多个),而“最高”表示比所有的都要高,所以使用谓词ALL。

  • 第12题:

    单选题
    Your proposal that they _____ their conversation in French is quite reasonable.
    A

    are to carry on

    B

    will carry on

    C

    Carry on

    D

    must carry on


    正确答案: A
    解析:
    句意:你提议他们应与法国方面展开对话,这是非常有道理的。proposal引导的同位语从句中应用虚拟语气,形式是“(should)+动词原形”,其中should一词可以省略,所以本题应选C。

  • 第13题:

    Please arrange the survey ______ early.

    A.to be carried out

    B.carry out

    C.be carried out

    D.will carry out


    正确答案:A

  • 第14题:

    进行安全检查。()

    • A、Carry out safety inspection.
    • B、Carry out more detailed inspection.
    • C、Carry out important inspection.
    • D、Carry out relevant inspection.

    正确答案:A

  • 第15题:

    英语名词复数是在后面加s,所以man的复数是mans。


    正确答案:错误

  • 第16题:

    装配中折CARRY困难,主要由()造成。

    • A、CARRY超长
    • B、V-CUT打得太浅
    • C、CARRY偏短
    • D、CARRY用材不对

    正确答案:B

  • 第17题:

    与正弦量具有一一对应关系的复数电压、复数电流称之为()。


    正确答案:相量

  • 第18题:

    We'll()our discussion tomorrow.

    • A、carry out
    • B、carry on
    • C、carry though
    • D、carry forward

    正确答案:B

  • 第19题:

    怎样用复数表示正弦量?为什么要用复数表示?


    正确答案: 用复数的模表示正弦量的最大值(或有效值),用复数的幅角表示正弦量的初相位。用复数表示后可使电路计算简单化。

  • 第20题:

    单选题
    The load rating of an AC generator is determined by the()
    A

    internal heat it can withstand

    B

    load it can carry continuously

    C

    load it is capable of supplying

    D

    overload it can carry for a specified time only


    正确答案: D
    解析: 暂无解析

  • 第21题:

    单选题
    Under International Rules().
    A

    all vessels must carry an after range light

    B

    vessels less than 50 meters in length need not carry an after range light

    C

    vessels stopped dead in the water should turn off their range lights

    D

    vessels over 20 meters in length must carry both range lights from sunset to sunrise


    正确答案: C
    解析: 暂无解析

  • 第22题:

    单选题
    All ships which, in accordance with the present Convention, are required to carry radio installations shall carry().
    A

    Q-code

    B

    Telephone numbers and addresses

    C

    the international Codes of Signals

    D

    radio instructions


    正确答案: A
    解析: 暂无解析

  • 第23题:

    单选题
    If r life boats can carry p passengers, how many life boats are needed to carry m passengers?
    A

    rm/p

    B

    pr/m

    C

    prm

    D

    pm/r

    E

    m/rp


    正确答案: C
    解析:
    Let n be the number of life boats needed to carry m passengers. You can compare life boats to passengers. r/p=n/m Cross multiply. Divide by pn=rm/p.