• 2021-04-14
    中国大学MOOC: 已知example是已定义的类,则程序结束前,共存在( )个对象。void main(){example x(5); example arr[2]={1,2};x=10;x.print();x=example(15);x.print();}
  • 4

    内容

    • 0

      对以下结构体变量example中成员x的引用正确的是【 】。 struct { int x;int y;} example, *p = &example;

    • 1

      if x > 10: print("x=", x) elif x > 0: print("x=", 2 * x) elif x >- 2: print("x=" ,x + 5) else: print("x=", -x) 当输入的x的值为 10 和 -2 的时候,代码输出的结果分别为( ):

    • 2

      下列说法不正确的是( )。知识点:全局变量 A: x = 5def fun(): x = 2 x = x * 3 print(x, end=' ')fun()print(x)程序无误,输出结果为6 5 B: x = 5def fun(): global x x = 2 x = x*3 print(x, end=' ')fun()print(x)程序无误,输出结果为6 6 C: x = 5def fun(): x = x * 3 print(x ,end=' ')fun()print(x)程序无误,输出的结果为15 15 D: x = 5def fun(): print(x, end=' ')fun()print(x)程序无误,输出的结果为5 5

    • 3

      请阅读下面的程序 public class Example { public static void main(String&#91;&#93; args) { int x = 1; do { x++; } while (x <= 4); System.out.println("x = " + x); } } 运行程序后,下列选项中,哪一个是x的值

    • 4

      请阅读下面的程序 public class Example { public static void main(String args) { int x = 1; do { x++; } while (x <;= 4); System.out.println("x = " + x); } } 运行程序后,下列选项中,哪一个是x的值。( ) A: 3 B: 4 C: 5 D: 6