排序
html前台样式
樱花飘落 <script src='//cdn.b52m.cn/api/yinghua'></script> 新年灯笼 <script src='//cdn.b52m.cn/api/denglong'></script> 鼠标点击出现核心价值观 <script src='//cdn.b52m...
2023上半年试卷A(西式甜品网)_个人解题过程
题目:西式甜品网 一、语言和环境 实现语言:HTML5+CSS3 环境要求:dw或 HBuilder 二、页面设计 三、要求 使用HTML5 + CSS3完成页面设计,要求HTML代码和CSS代码分离。 四、推荐实现步骤 1、页...
MYSQL_练习_5个表_24.3.18
drop database if exists t4; create database if not exists t4; use t4; drop table if exists account; create table account (	userid char(6) not null primary key comment '用户号', ful...
Python_函数练习题
1. 编写一个函数,该函数接收两个数字作为输入,并返回这两个数字的最大公约数。 def fun(x, y): while y != 0: temp = y y = x % y x = temp return x num1 = int(input('请输入第一个数字: '...
Python递归案例
把10不断处以2,直到不能除为止,打印每次的结果 def a(num): if num == 0: return 0 else: print(num) a(num // 2) a(10) 兔子数列 def f(month): if month < 3: return 1 else: return f(m...
华中农业大学: 官网导航栏
<!DOCTYPE html> <html>	<head>	<meta charset='UTF-8'>	<title>导航栏</title>	<style type='text/css'>	*{margin: 0;	padding: 0;}	body{font-siz...
HTML定位
作业1 代码 <!DOCTYPE html> <html lang='en'> <head> <meta charset='UTF-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <meta name='viewport' content='wid...
html 太极图
<!DOCTYPE html> <html>	<head>	<meta charset='UTF-8'>	<title></title>	</head>	<style>	body{background-color: darkgray;}	.taiji{	margi...
CSS重难点-浮动与定位
笔记 (1)display属性 设置标签在页面的显示方式,主要取值有: none 设置标签不在页面显示 block 设置标签以块状标签的形式在页面呈现 inline 设置标签以行内标签的形式在页面呈现 inline-block...
Python求两数的最大公约数
import math while True: num1 = int(input('请输入第一个整数')) num2 = int(input('请输入第二个整数')) if num1 > num2: while num2 != 0: num1, num2 = num2, num1 % num2 print(num1) e...








