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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

单选题:19//4 表达式输出结果为?

Luz4年前 (2022-09-05)589
19//4 表达式输出结果为?A.1B.2C.3D.4E.5答案:D…

单选题:print(4 * 2 ** 3)的输出是?

Luz4年前 (2022-09-05)657
print(4 * 2 ** 3)的输出是?A.64B.512C.24D.32答案:D…

单选题:以下代码输出结果为?

Luz4年前 (2022-09-05)395
x = Truey = Falsez = Falseif x or y and z: print("yes")else: print("no")A.yesB.noC.编译出错答案:A…

单选题:以下代码输出结果为?

Luz4年前 (2022-09-05)444
x = Truey = Falsez = Falseif not x or y: print(1)elif not x or not y and z: print(2)elif not x or y or not y and x…

编程题:Simple addition

Luz4年前 (2022-09-05)445
This is a simple addition.Please read in two integers A and B, and then output their sum.### Input Specification:Enter t…

编程题:college student

Luz4年前 (2022-09-05)275
Enter the name and output: XXX(the entered name), you are a college student now.### Input Specification:Enter your name…

编程题:cube

Luz4年前 (2022-09-05)242
Calculate the third power of an integer.### Input Specification:Input an integer.### Output Specification:Print the cubi…

编程题:reduce weight

Luz4年前 (2022-09-05)511
Tom wants to lose weight. He set himself a goal to lose weight, lose the specified weight within the specified number of…

编程题:暴力搜索

Luz4年前 (2022-09-05)501
小刘拿到驾照了!为了庆祝这个欢乐的时刻,他的父母给他买了第一辆车:一辆怪物卡车!小刘发现,尽管在交通堵塞时拥有一辆能压扁所有其他汽车的汽车是件好事,但停放一辆4辆普通汽车大小的汽车可能有点棘手。他的朋友大壮在城市停车场公司兼职。他定期给小刘…

编程题:暴力

Luz4年前 (2022-09-05)255
给定两个整数A和B,模B是A除以B的余数。数字7、14、27和38模3等于1、2、0和2。编写一个接受10个数字的程序作为输入和输出,所有数字都模42,输出不同结果的数量。### 输入格式:输入将包含10个非负整数,每个小于1000,每行一…