语句selectround(13.4321,2)的执行结果是:()。

语句selectround(13.4321,2)的执行结果是:()。


相关考题:

语句select ROUND(45.953,-1),TRUNC(45.936,2)from dual;的结果是()。 A.46 and 45B.46 and 45.93C.50 and 45.93D.50 and 45.9

语句Print 12;Tab;24的执行结果是【 】。

语句selectchar(67)的执行结果是:()

在Oracle中,语句()将ORDER_DATE日期值’2000年3月18日’显示为‘2000年1月1日’。 A.SELECTROUND(order_date,’day’)FROMinventoryB.SELECTROUND(order_date,’YEAR’)FROMinventoryC.SELECTROUND(order_date,’month’)FROMinventoryD.SELECTROUND(to_char(order_date,’yyyy’))FROMinventory

执行语句: int result=100; cout= 60)(result 执行语句:int result=100;cout<<(((result>= 60)(result<=100))?"good":"general");结果是【 】。

语句”Hello”.equals(”hello”);的正确执行结果是( )。A.trueB.falseC.0SXB 语句”Hello”.equals(”hello”);的正确执行结果是( )。A.trueB.falseC.0D.1

语句SELECT POW(8,2); 的执行结果是

4、下列语句执行的结果是_____ >>>int('2.6')

13、已知下面的循环代码 for(int i=1;i<4;i++){ for(int j=1;j<4;j++){ if(i*j>2) break; System.out.print(i*j); } System.out.print(i); } (1)执行完break语句之后,执行 语句;输出结果是 . (2)将break用continue代替,执行完continue语句之后,执行 语句;输出结果 是 .