Val("123.456")=
举一反三
- Val("123.456")=
- 下列函数中,运算结果为字符型的是()。 A: AT("ABC","智能ABC") B: INT(123.456) C: VAL("12/12/66") D: DTOC(DATE())
- Which statement prints the floating-point value 123.456 right justified with a field width of 10? ( ) A: System.out.printf("%d10.3", 123.456); B: System.out.printf("%10.3d", 123.456); C: System.out.printf("%f10.3", 123.456); D: System.out.printf("%10.3f", 123.456);
- 如下程序的输出结果是______。 n=-123.456 STR(n) A: -123 B: -123.456 C: 123 D: 456
- 以下程序的运行结果是( )。a=123.456 b=100 c=int(a)+b print(c) A: 123.456 B: 223.456 C: 223 D: 23.456