学习 第8页
个人学习记录

MySQL_练习_24.3.11

-- (1)删除数据库 drop database if exists t3; -- (2)创建数据库 create database if not exists t3; -- (3)使用数据库 use t3; -- 删除数据表 drop table if exists book; -- 在t3中创建数据...
北梦的头像-北梦の博客SVIP北梦1年前
09211

Python_练习_24.3.8

1.写出下列题目中的pyhon语句 定义一个Employee类(员工) 在员工类中定义类属性age(年龄)为40 定义一个方法displayCount(),输出“公司最高工资” 通过类Employee修改类属性age的值=35 在方...
北梦的头像-北梦の博客SVIP北梦1年前
01039

Python_上学期复习—课后作业

1.编写一个程序,能计算下面公式计算并输出 x 的值。 $$x=\frac{-b+\sqrt{b^{2}-4ac}}{2a}$$ 代码: a = int(input('请输入a的值:')) b = int(input('请输入b的值:')) c = int(input('请输入c...
北梦的头像-北梦の博客SVIP北梦1年前
02288

html前台样式

樱花飘落 <script src='//cdn.b52m.cn/api/yinghua'></script> 新年灯笼 <script src='//cdn.b52m.cn/api/denglong'></script> 鼠标点击出现核心价值观 <script src='//cdn.b52m...
北梦的头像-北梦の博客SVIP北梦2年前
013115
跟李哥不一样的导航栏-北梦の博客

跟李哥不一样的导航栏

css.header{ background-color: orange; height: 50px; width: 100%; margin-top: 10px; } .ccc{ width: 800px; background-color: none; /* 居中 */ margin: auto; } ul { /*去点*/ list-style...
珊瑚海的头像-北梦の博客珊瑚海2年前
122510
2023上半年试卷A(西式甜品网)_个人解题过程-北梦の博客

2023上半年试卷A(西式甜品网)_个人解题过程

题目:西式甜品网 一、语言和环境 实现语言:HTML5+CSS3 环境要求:dw或 HBuilder 二、页面设计 三、要求 使用HTML5 + CSS3完成页面设计,要求HTML代码和CSS代码分离。 四、推荐实现步骤 1、页...
北梦的头像-北梦の博客SVIP北梦2年前
015210

Python作业:函数

公约数# 编写一个函数,该函数接收两个数字作为输入,并返回这两个数字的最大公约数。 def gcd(a, b): while b != 0: a, b = b, a % b return a num1 = int(input('请输入一个整数:')) num2 = i...
珊瑚海的头像-北梦の博客珊瑚海2年前
011814