珊瑚海 – 北梦の博客-北梦の博客
珊瑚海的头像-北梦の博客
UID:2 已加入本站506天 总消费:0 徽章-人气佳作-北梦の博客徽章-资深玩家-北梦の博客徽章-签到达人-北梦の博客6枚徽章珊瑚海湖北省武汉市
这家伙很懒,什么都没有写...
Python课案例:计票机制-北梦の博客

Python课案例:计票机制

y = {} x = [] print('输入quit表示选手成绩录入完毕') while True: name = input('输入选手名称: \n') if name == 'quit': break score = float(input('请输入选手票数: \n')) y[name] = score...
Python求两数的最大公约数-北梦の博客

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...
2年前
010012
html 太极图-北梦の博客

html 太极图

<!DOCTYPE html> <html> <head> <meta charset='UTF-8'> <title></title> </head> <style> body{background-color: darkgray;} .taiji{ margi...
华中农业大学:   官网导航栏-北梦の博客

华中农业大学: 官网导航栏

<!DOCTYPE html> <html> <head> <meta charset='UTF-8'> <title>导航栏</title> <style type='text/css'> *{margin: 0; padding: 0;} body{font-siz...
Python作业:函数-北梦の博客

Python作业:函数

公约数# 编写一个函数,该函数接收两个数字作为输入,并返回这两个数字的最大公约数。 def gcd(a, b): while b != 0: a, b = b, a % b return a num1 = int(input('请输入一个整数:')) num2 = i...
跟李哥不一样的导航栏-北梦の博客

跟李哥不一样的导航栏

css.header{ background-color: orange; height: 50px; width: 100%; margin-top: 10px; } .ccc{ width: 800px; background-color: none; /* 居中 */ margin: auto; } ul { /*去点*/ list-style...
作业2024数据库3月8-北梦の博客

作业2024数据库3月8

-- 第一个 create table if not exists acc_ount( userid char(6) not null primary key comment '用户名', fullname varchar(10) not null comment '用户名', pass_word varchar(20) not null ...
数据库MYsql笔记2024年3月18-北梦の博客

数据库MYsql笔记2024年3月18

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

Mysql_LibraryDB

drop database if exists LibraryDB; create database if not exists LibraryDB; use LibraryDB; -- 1. 读者表 (Readers Table) drop table if exists readers; create table readers ( -- 读者...
Mysql_可恶的王晓林-北梦の博客

Mysql_可恶的王晓林

drop table if exists student; create table student( stuid char(10) not null comment'学号', stuname char(10) not null comment'姓名', stusex char(2) not null comment'性别', studate d...

运行时间

用户总数

浏览总数

文章总数

今日发布

今日
emo