itgle.com
更多“下面程序的运行结果为【】。x+-2.3y=125z=Len (Str$(x)+Str$(y))Print 2 ”相关问题
  • 第1题:

    运行下面程序,其输出结果(str2的值)为【 】。

    Dim str l,str2 As String

    Dim I As Integer

    str l= “abcdef”

    For l To Len (strl) Step2

    str2=UCase (Mid (strl,I ,1))十str2

    Next

    MsgBoxstr2


    正确答案:ECA
    ECA 解析:本程序代码的功能是,从源字符中的第一个字符开始,把所有第奇数个的字符转换为大写并按倒序排列得到新的字符串。
    最开始str2字符串为空。当第—次执行循环时,先取出“a”在转换为大写“A”,在和str2相连接,得到“A”,最后在赋给str2。所以,第一次循环后,str2的值为“A”
    当第二次执行循环时,取出“c”,在转换为大写“C”,在和str2相连接,得到“CA”,最后在赋给str2。所以,第二次循环后,str2的值为“CA”
    当第三次执行循环时,取出“e”,在转换为大写“E”,在和str2相连接,得到“ECA",最后在赋给str2。所以,第二次循环后,str2的值为“ECA”至此,循环结束,str2最终结果为“ECA"。

  • 第2题:

    14、下面程序的运行结果是:() class test{ public static void main(String[] args) { String str = "hello zut"; System.out.print(str.charAt(2)); System.out.print(str.length()); System.out.print(str.substring(4)); } }

    A.e9ozut

    B.l9o zut

    C.l8 zut

    D.e8o zut


    A 解析:由于类C14实现了Runnable接口,没有继承类Thread,因此需要调用 Thread.currentThread()方法来返回当前线程的引用。在main()方法中,调用了类C14构造方法,其参数就是线程睡眠的时间300毫秒,而Thread类构造方法的另一个参数就是线程的名称t。

  • 第3题:

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


    D

  • 第4题:

    下面程序的运行结果是( )。 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


    正确答案:B
    暂无解析,请参考用户分享笔记

  • 第5题:

    运行以下程序,输出结果的是: str1 = "Dongbei University" str2 = str1[:7] + " Normal " + str1[-10:] print(str2)

    A.Normal U

    B.Dongbei Normal

    C.Normal University

    D.Dongbei Normal University


    t a=1,b=0; if(!a) b++; else b+=3; printf(“%d
    ”,b); return 0;