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

Luz 管理员

暂无介绍

89858 篇文章 33 次评论

C语言中字符串常量是用双引号括起来的。

Luz5年前 (2021-05-10)1807
C语言中字符串常量是用双引号括起来的。 ~@[](1)答案:TRUE…

Python代码的注释只有一种方式,那就是使用#符号。

Luz5年前 (2021-05-10)1896
Python代码的注释只有一种方式,那就是使用#符号。 ~@[](2)答案:FALSE…

Python运算符%不仅可以用来求余数,还可以用来格式化字符串。

Luz5年前 (2021-05-10)4567
Python运算符%不仅可以用来求余数,还可以用来格式化字符串。 ~@[](2)答案:TRUE…

Python使用缩进来体现代码之间的逻辑关系。

Luz5年前 (2021-05-10)1359
Python使用缩进来体现代码之间的逻辑关系。 ~@[](2)答案:TRUE…

print()可以用于同时输出多个变量值。

Luz5年前 (2021-05-10)2884
print()可以用于同时输出多个变量值。 ~@[](1)答案:TRUE…

在Python中可以使用 for 作为变量名。

Luz5年前 (2021-05-10)1592
在Python中可以使用 for 作为变量名。~@[](2)答案:FALSE…

During finding all articulation points in a connected graph, if

Luz5年前 (2021-05-10)1357
During finding all articulation points in a connected graph, if v1 is the parent of v2 in the depth-first tree, Low(v1)…

Let P be the shortest path from S to T. If the weight of every e

Luz5年前 (2021-05-10)1158
Let P be the shortest path from S to T. If the weight of every edge in the graph is multiplied by 2, P will still be the…

For a graph, if each vertex has an even degree, we can find an E

Luz5年前 (2021-05-10)1619
For a graph, if each vertex has an even degree, we can find an Euler circuit that visits every vertex exactly once. ~@[…

以下程序是某个C语言源文件的内容:

Luz5年前 (2021-05-10)1142
以下程序是某个C语言源文件的内容: ``` C extern int k; int main(){ k = 3; return 0; } ``` 若某个C语言的工程(Project)仅包含这个源文件,则这个源文件可以通过编译…