更多“ 下面程序的输出结果是( )。A. ABCDEFB. FEDCBAC. AD. F ”相关问题
  • 第1题:

    下面程序段执行后的输出结果是()。 int x='f'; printf("%c",'A'+(x-'a'+1));

    A.G

    B.H

    C.I

    D.J


    A

  • 第2题:

    2、下面程序输出结果是 def f(*b): s=0 for item in b: s += item return s print(f()*f(1,2,3))

    A.0

    B.None

    C.6

    D.报错


    28

  • 第3题:

    下面程序段的输出结果是() 。 char a[7]=”abcdef”; char b[4]=”ABC”; strcpy(a,b); cout<<a;

    A.b

    B.0

    C.e

    D.f


    6

  • 第4题:

    下面程序的输出结果是: def fib(n): f1, f2 = 0, 1 while f2 < n: print f2, f1, f2 = f2, f1 + f2 fib(10)


    9

  • 第5题:

    6、下面程序段执行后的输出结果是()。 int x='f'; printf("%c",'A'+(x-'a'+1));

    A.G

    B.H

    C.I

    D.J


    intf(“%c\n”,m);