已经定义常量#define PRICE 30 则,下列语句使用常量正确的是( )。
A: PRICE = 20;
B: int c=3;PRICE=c;
C: int c=PRICE;
D: PRICE++;
A: PRICE = 20;
B: int c=3;PRICE=c;
C: int c=PRICE;
D: PRICE++;
举一反三
- 以下代码的输出结果是()。publicclassTest{publicstaticvoidmain(String[]args){double[]price=newdouble[5];price[0]=98.10;price[1]=32.18;price[2]=77.75;System.out.print((int)price[0]+""+(int)price[1]+""+(int)price[2]+""+(int)price[3]+""+(int)price[4]);}}
- 设某函数原型声明为: void f(int ,int &),则()可以用来调用该函数。 A: f( rate, price ); B: f( rate, &price ); C: f( &rate, price ); D: f( int rate, int &price );
- 阅读下面T-SQL语句,对变量赋值时存在错误的是( )(其中money为钱币数据类型,为其变量赋值可用或者不用$等货币符号)。 A: declare @id int ,@price money Set @id =100 Set @price=$2.21 B: declare @id int ,@price money Select @id=100,@price=2.21 C: declare @id int ,@price money set @id=100,@price=2.21 D: declare @id int ,@price money Select @id=100Select @price=$2.21
- 使用SQL语句将表s中字段price的值大于30的记录删除,正确的命令是( )。 A.DELETE FROM S FOR price>30 B.DELETE FROM sWHERE price>30 C.DELETE S FOR price>30 D.DELETE S WHERE price>30
- 检查约束中,要求价格大于20,表达式为()。 A: …… check (price >20) B: …… check (price <30) C: …… check (price between 20 and 30) D: 都不是