-->
当前位置:首页 > Luz 第6154页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

单选题:The following is the part of depth-first search tree to find the

Luz5年前 (2021-05-10)679
The following is the part of depth-first search tree to find the articulation points, and the Num(v) value has been mark…

单选题:The maximum flow from v1 to v6 is ____

Luz5年前 (2021-05-10)693
The maximum flow from v1 to v6 is ____ @[B](2)![a.jpg](~/6c2c848b-760e-4eac-ab54-113279f4a2a2.jpg)A. 11 B. 12 C. 13…

单选题:The maximum flow from v1 to v6 is ____:

Luz5年前 (2021-05-10)633
The maximum flow from v1 to v6 is ____: @[A](2)![b.jpg](~/59067da2-bf01-44b3-b189-e4f5aadec03a.jpg)A. 11 B. 12 C. 13…

单选题:有说明:`char *language[]={"FORTRAN","BASIC","PASCAL","JAVA","C"};`

Luz5年前 (2021-05-10)2958
有说明:`char *language[]={"FORTRAN","BASIC","PASCAL","JAVA","C"};` 则表达式`language[1]˃language[3]`@[D](2)A. 字符B和字符JB. 字符串FO…

单选题:若有定义`char *str[]={“Python”, “SQL”, “JAVA”, “PHP”, “C++”};`

Luz5年前 (2021-05-10)3362
若有定义`char *str[]={“Python”, “SQL”, “JAVA”, “PHP”, “C++”};` 则表达式`*str[1] ˃ *str[3]`比较的是:@[D](2)A. 字符P和字符JB. 字符串SQL和字符串PH…

单选题:C语言中标识符只能由字母、数字和下划线组成,且第一个字符:

Luz5年前 (2021-05-10)812
C语言中标识符只能由字母、数字和下划线组成,且第一个字符: @[B](2)A. 必须为字母B. 必须为字母或下划线C. 必须为下划线D. 可以是字母、数字和下划线中任一种字符A.必须为字母B.必须为字母或下划线C.必须为下划线D.可以是…

单选题:以下的 for 循环次数是多少:

Luz5年前 (2021-05-10)1766
以下的 for 循环次数是多少: @[D](2)```int x,y;for(x=0,y=0;(y!=123)|| (x˂4);x++) ;```A. 执行 3 次B. 执行 4 次C. 循环次数不定D. 是无限循环A.执行 3 次B.…

单选题:以下程序段的输出结果是:

Luz5年前 (2021-05-10)593
以下程序段的输出结果是: @[A](2)```#includeint main(){ int num = 0, s = 0; while(num ˂= 3){ num ++;…

单选题:```

Luz5年前 (2021-05-10)620
```static struct { int x, y[3];} a[3] = {{1,2,3,4},{5,6,7,8},{9,10,11,12}}, *p;p = a+1;```经上述操作后,表达式```*(*(p+1)+2)```…

单选题:向建立好的单向链表中的结点q后插入一个新结点p,且所有结点都已具有如下形式的结构定义:

Luz5年前 (2021-05-10)1316
向建立好的单向链表中的结点q后插入一个新结点p,且所有结点都已具有如下形式的结构定义: @[D](2)```struct node{ int data; struct node *next;}*p, *q, *head;```则…