网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

下面代码的输出结果是() x=3.1415926 print(round(x) ,round(x,1))

A.3.14 3

B.3 3.1

C.6.28 3

D.3.1415926 3.1


参考答案和解析
B
更多 “下面代码的输出结果是() x=3.1415926 print(round(x) ,round(x,1))A.3.14 3B.3 3.1C.6.28 3D.3.1415926 3.1” 相关考题
考题 下面语句的输出结果为______。x!=3.1415926Print x

考题 以下程序的输出结果是【 】。x=12.7x=Int(x+0.5)Print X

考题 下面的程序的运行结果是__________func main() {x := 1{ x := 2 fmt.Print(x)}fmt.Println(x)}

考题 下面程序段的输出结果是【 】。For X=1.5 To 5 Step 1.5Print X;Next X

考题 运行下面程序后,正确的输出结果是 ______。Private Sub Command1_ Click() x = 6 if x >6 then Print "x>6": Else if x <8 then Print "x<8"; Else if x = 6 then Print "x=6": End if End if End ifEnd SubA.x<8 x=6B.x<8C.x=6D.x<8或x=6

考题 下面程序 main() { int x=32; print("%d\n",x=x<<1); } 的输出是______。A.100B.160C.120D.64

考题 执行下面程序,第一行输出结果是【 】,第二行输出结果是47。Option ExplicitPrivate Sub Form_Click( )Dim A As IntegerA=2Call Sub1 (A) End SubPrivate Sub1 (x As Integer)x=x*2+1If x<10 ThenCall Sub1 (x)End Ifx=x*2+1Print xEnd Sub

考题 下面程序的输出结果是()。includeClass example{int a;public:example(int B.{a=b++ 下面程序的输出结果是( )。 #include<iostream.h> Class example {int a; public: example(int B.{a=b++;} void print(){a=a+1 cout<<a<<““;} void print()const{cout<<a<<““;} }; void main() {example x(3); Const example y(2); x.print();A.2 2B.4 3C.4 2D.3 2

考题 设有变量PI=3.1415926,执行命令?round(PI,3)的显示结果是______。A.3.141B.3.142C.3.140D.3.0

考题 执行下面的程序后,输出的结果是 K=1 For j=1 To 4 X=X - 1: y=0 For k=1 To 4 X=X + 1: y=y + 1 Next k Next j Print X;yA.1 4B.13 4C.12 8D.20 6

考题 以下程序段的输出结果是( )。 x=1 y=4 Do Until y4 x= x * y y=y+1 Loop Print XA.1SX 以下程序段的输出结果是( )。 x=1 y=4 Do Until y4 x= x * y y=y+1 Loop Print XA.1B.4C.8D.20

考题 下面程序的输出结果是 ( ) main( ) { char x=040; print{("%d\n",x=x<<1);}A.100B.160C.120D.64

考题 下面程序的输出结果是includeclass example{ int a;public: example(int b){a=b++; 下面程序的输出结果是 #include<iostream.h> class example { int a; public: example(int b){a=b++;} void print(){a=a+1; cout<<a<<" ";} void print()const{cout<<a<<" ";} }; void main() { example x(3); const example y(2); x.print(); y.print(); }A.2 2B.4 3C.4 2D.3 2

考题 以下程序输出什么?"""x=1"""whilex:print(x) A.运行结果显示NameError:name'x'isnotdefinedB.运行结果无限循环输出1C.它等价于下面的程序#x=1whilex:print(x)D.它等价于下面的程序whilex:print(x)

考题 分析下面的JavaScript代码段,输出结果是()。var a=15.59;document.write(Math.round(a));A、15B、16C、15.5D、15.4

考题 下列数据中,()是数值型常量。A、3.1415926B、"3.1415926"C、ROUND(3.1415926,2)D、INT(3.1415926)

考题 设变量X=0.618,在执行命令?ROUND(X,2)后显示的结果是()。A、0.61B、0.62C、0.60D、0.618

考题 分析下面的代码:varx=[’Hello’];document.write(x[1])输出结果是undefined。()

考题 下面程序段运行后,显示结果是()。DimxIf x Then Print x Else Print x+1A、0B、1C、-1D、显示出错信息

考题 下面语句的输出结果是()。x=10:y=3Print(x*y)/8A、5B、6C、3D、4

考题 单选题下面语句的输出结果是()。x=10:y=3Print(x*y)/8A 5B 6C 3D 4

考题 单选题设变量X=0.618,在执行命令?ROUND(X,2)后显示的结果是()。A 0.61B 0.62C 0.60D 0.618

考题 单选题分析下面的JavaScript代码段,输出结果是()。var a=15.59;document.write(Math.round(a));A 15B 16C 15.5D 15.4

考题 单选题下面程序段运行后,显示结果是()。Dim xIf x Then Print x Else Print x+1A 0B 1C -1D 显示出错信息

考题 单选题下面程序段运行后,显示结果是()。DimxIf x Then Print x Else Print x+1A 0B 1C -1D 显示出错信息

考题 判断题分析下面的代码:varx=[’Hello’];document.write(x[1])输出结果是undefined。()A 对B 错

考题 单选题连续执行以下命令后,最后一条命令的输出结果是(  )。x=25.6? INT(x),FLOOR(x),ROUND(x,0)A 25,25,25B 25,25,26C 26,25,26D 26,26,26

考题 单选题下面语句的运行结果是(  )。STORE -5.8 TO x?INT(x),CEILING(x),ROUND(x,0)A -5,-5,-5B -5,-5,-6C -5,-6,-5D -6,-6,-6