以下语句的输出结果是 a = Sqr(26) Print Formats $(a,"$####.###")
A.$5.099
B.5.099
C.5099
D.$0005.099
第1题:
下列语句执行后的输出结果是______。 Wage=26 Print"工资"; Print Wage
A.工资□26
B.工资□□26
C.工资□26
D.工资□□26
第2题:
以下程序段的输出结果是____。 Dim c as Boolean Dim a as Double,b as Double a = Sqr(3) b = Sqr(2) c = a < b Print c
A.-1
B.0
C.FALSE
D.TRUE
第3题:
4、以下语句的输出结果是 for i in range(5): print(i) print(i)
A.4
B.5
C.6
D.0
第4题:
以下语句的输出结果是 a=Sqr(3) Print Format(a, "$$ # # # # . # # #")
A.$1.732
B.$S1.732
C.1732
D.$$0001.732
第5题:
3、以下语句的输出结果是 print(not True or 3>0 and "yes")
A.True
B.False
C.yes
D.no