• 2022-06-09
    阅读下列程序,程序输出的结果是______。()string = 'd:/python/test.html'for i in ':./': string.replace(i,'')print(string)
    A: d:pythontest.html
    B: d python test html
    C: d:/python/test.html
    D: dpythontesthtml
  • C

    举一反三

    内容

    • 0

      写出下面程序的输出结果public class Test { public static void main(String srgs[]) { String s = "Mary,F,1990"; String sPlit[] = s.split(","); for(int i = 0;i<sPlit.length;i++) { System.out.print(sPlit[i]+"-"); } }}[/i]

    • 1

      下列代码的执行结果是 。public class Test {public int aMethod(){static int i=0;i++;System.out.println(i);}public static void main(String args[ ]){Test test = new Test();test.aMethod();}}

    • 2

      中国大学MOOC: 如下所示的Test类的Java程序中,共有几个构造方法()。 public class Test{ private int x; public Test(){} public void Test(int i){ this.x=i; } public Test(String str){} }

    • 3

      以下代码段的执行结果是( )。string ="i love python""".join(reversed(string.split())) A: i love python B: python love I C: nohtyp evol I D: i evol nohtyp

    • 4

      字符串 s = “I love Python”,以下程序的输出结果是: s = “I love Python” ls = ssplit() lsreverse() print(ls) A: ‘Python’, ‘love’, ‘I’ B: Python love I C: None D: [‘Python’, ‘love’, ‘I’]