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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

编程题:心灵感应魔法

Luz4年前 (2022-10-10)654
下图5张表,你从心理默念一个[1,31]以内的数,然后告诉我它在第几张表中,我能通过心灵感应知道你心中的那个数字是什么?![图片1.png](~/227da10b-be7e-45e7-8343-c07e0eadf212.png)它其实是利用…

编程题:number plate

Luz4年前 (2022-10-10)294
Print a number plate. The number plate is composed of a border and a number. The characters forming the border are divid…

编程题:find the last character

Luz4年前 (2022-10-10)338
Input a string and output the last character of the string.### Input Specification:Input a string.### Output Specificati…

ssh连接自定义欢迎语

Luz4年前 (2022-10-10)4033
ssh连接自定义欢迎语
效果看到别人用,看起来很炫酷设置方法修改/etc/motd 文件就可以,在motd文件中输入响应的提示语,登录即可打印vi /etc/motd保存后断开ssh重新连接查看效果…

填空题:(关系运算符的基本运算)阅读程序写程序的运行结果

Luz4年前 (2022-10-09)410
(关系运算符的基本运算)阅读程序,写程序的运行结果:#include <stdio.h>int main(){ int a,b; double i,j; printf("请输入整型变量a、b的值:\n"); scanf("%d…

填空题:(自增运算符)阅读程序:填空运行结果

Luz4年前 (2022-10-09)437
阅读程序:写程序的运行结果#include <stdio.h>int main(){ int a=5; int f,h,g; f=18-a++; printf("f=%d ",f); printf("a=%d\n",a); /…

判断题:语句块的缩进

Luz4年前 (2022-10-09)520
Python中if语句冒号后的语句块中的所有语句的缩进必须相同。答案:TRUE…

判断题:2

Luz4年前 (2022-10-09)522
2<3<=3的结果是Ture。答案:TRUE…

判断题:24的结果为True

Luz4年前 (2022-10-09)501
2<3>4的结果为True。答案:FALSE…

判断题:Python中for语句的格式为:for

Luz4年前 (2022-10-09)850
Python中for语句的格式为:for <变量> in <序列>:其中,<序列>必须指向一个可迭代的对象。答案:TRUE…