举一反三
- 若有以下结构体定义:struct example{ int x;int y; } v1;则()是正确的定义. A: example x=10; B: example v2; v2.x=10; C: struct v2;v2.x=10; D: struct example v2={10};
- Python中,如何输出列表中的第二个元素? A: print(example[2]) B: echo(example[2]) C: print(example[1]) D: print(example(2))
- 以下结构体定义 struct example { int x; int y; }v1; 则 是正确的引用或定义。 A: example.x=10 B: example v2;v2->x=10 C: struct v2;v2.x=10 D: struct example v2={10}
- 请阅读下面的程序 public class Example { public static void main(String[] args) { int x = 1; do { x++; } while (x <= 4); System.out.println("x = " + x); } } 程序的运行结果是()
- 请阅读下面的程序public class Example {public static void main(String[] args) {int x = 1;do {x++;} while (x <= 4);System.out.println("x = " + x);}}程序的运行结果是( ) A: x=3 B: x=5 C: x=6 D: x=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[] 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