【单选题】已知:int i; char c; float f; 以下表达式中值为整型的算数表达式是( )。
【单选题】已知程序中已经定义了函数test,其原型是int test(int,int,int);,则下列重载形式中正确的是
A.
char test (int,int,int);
B.
double test(int,int,double);
C.
int test(int,int,int=O);
D.
float test(int,int,float=3.5F);
【单选题】已知有变量datal定义如下: union data { int i char ch; float f }datal; 则变量datal所占的内存存储空间可表示为(57)。
D.
SiZCOf(mt)+sizeof(char)+sizeof(float)
【多选题】在间接标价法下,以下说法正确的是
A.
汇率越高,本国货币的币值就越低,外国货币的币值越高
B.
汇率越高,本国货币的币值就越高,外国货币的币值越低
C.
汇率越低,本国货币的币值就越高,外国货币的币值越低
D.
汇率越低,本国货币的币值就越低,外国货币的币值越高
【单选题】已知: class { public: int a; int b(); int f(); int f(int); int g(); }; class B { public: char f(); int g(); private: int a; int b(); }; class C:public A,public B { }; 设有:C *pc; 则:
【单选题】已知函数原型:void f(int a, int b=3,char c='*'); 则下面的函数调用中,不合法的调用是()。
【多选题】在间接标价法下,以下说法正确的是( )。
【简答题】电气原理图设计的一般考虑的要求包括 的要求 , 的要求 ,确保 ,应具有必要的保护环节,操作、维修方便,控制电路力求简单、经济等方面。
【单选题】已知: class A { public: int a; int b(); int f(); int f(int); int g(); }; class B { public: char f(); int g(); private: int a; int b(); }; class C:public A,public B { }; 设有: C *pc; 则: