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

题目内容 (请给出正确答案)
下面程序的运行结果是( )。 X=-2.3y=125z=Len(StrS(x)+StrS(y))Print Z A.4B.8

下面程序的运行结果是( )。 X=-2.3y=125z=Len(StrS(x)+StrS(y))Print Z

A.4

B.8

C.9

D.3


参考答案

更多 “ 下面程序的运行结果是( )。 X=-2.3y=125z=Len(StrS(x)+StrS(y))Print Z A.4B.8 下面程序的运行结果是( )。 X=-2.3y=125z=Len(StrS(x)+StrS(y))Print ZA.4B.8C.9D.3 ” 相关考题
考题 下面程序的运行结果为【 】。x+-2.3y=125z=Len (Str$(x)+Str$(y))Print 2

考题 下面程序的运行结果为【 】。x=-2.3y=125z=Len(Str$(x)+Str$(y))Print Z

考题 下面程序运行的结果是______。 main() { int x,y,z; x=0;y=z=-1; x+=-z---y; printf("x=%d\n",x); }A.x=4B.x=0C.x=2D.x=3

考题 下面程序运行的结果是______。 main() { int x,y,z; x=0; y=z=-1; x+=-z---y; printf("x=%d\n",x); }A.x=4B.x=0C.x=2D.x=3

考题 下面关于字符串比较的代码中,哪些 正确 ?A.代码为: strs1 = 'abcd' strs2 = 'a' print(strs1 > strs2) 输出为: TrueB.代码为: strs1 = 'abcd' strs2 = 'a' print(strs1 <> strs2) 输出为: FalseC.代码为: strs1 = 'abcd' strs2 = ' abcd' print(strs1 == strs2) 输出为: TrueD.代码为: strs1 = 'ab' strs2 = 'a123' print(strs1 > strs2) 输出为: TrueE.代码为: strs1 = 'a' strs2 = "a" print(strs1 == strs2) 输出为: True

考题 55、下列程序的运行结果是____。 x=[1,2,3] y=x+[4] print(len(x+y))

考题 9、下面关于字符串比较的代码中,哪些 正确 ?A.代码为: strs1 = 'abcd' strs2 = 'a' print(strs1 > strs2) 输出为: TrueB.代码为: strs1 = 'abcd' strs2 = 'a' print(strs1 <> strs2) 输出为: FalseC.代码为: strs1 = 'abcd' strs2 = ' abcd' print(strs1 == strs2) 输出为: TrueD.代码为: strs1 = 'ab' strs2 = 'a123' print(strs1 > strs2) 输出为: TrueE.代码为: strs1 = 'a' strs2 = "a" print(strs1 == strs2) 输出为: True

考题 9、下面程序的运行结果是()。 x,y,z = 5,-2,8 if x>y: if y>=0: z=0 else: z+=2 print(z) 知识点:分支的逻辑A.10B.没有结果C.0D.8

考题 11、如下程序的输出结果是___________def myfun(x,y=200,z=100): print(x,y,z) myfun(50,100)