摘要: HTTP(Hyper Text Transfer Protocol),意为:超文本传输协议,是互联网上应用最为广泛的一种网络协议。所有的WWW文件都必须遵守这个标准。HTTP协议用于从WWW服务器传输超文本到本地浏览器的传输协议。它可以使浏览器更加高效,使网络传输减少。它不仅保证计算机正确快速地传输 阅读全文
posted @ 2023-03-09 08:47 墨圆 阅读(27) 评论(0) 推荐(0)
摘要: package game;import java.io.*;import java.util.Scanner;import java.io.FileWriter;public class First { public static void main(String[] args){ //主菜单 Sy 阅读全文
posted @ 2022-12-21 12:19 墨圆 阅读(19) 评论(0) 推荐(0)
摘要: package game;import java.io.*;import java.util.Scanner;import java.io.FileWriter;public class First { public static void main(String[] args){ //主菜单 Sy 阅读全文
posted @ 2022-12-15 21:10 墨圆 阅读(22) 评论(0) 推荐(0)
摘要: <DOCTYPE html><html> <head> <meta charset="UTF_8"> <title></title> <style> .box{ position: relative; width: 400px; border-bottom: 1px solid gray; marg 阅读全文
posted @ 2022-12-01 17:37 墨圆 阅读(161) 评论(0) 推荐(0)
摘要: <html> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, init 阅读全文
posted @ 2022-12-01 16:19 墨圆 阅读(241) 评论(0) 推荐(0)
摘要: CREATE DATABASE shop;USE shop; CREATE TABLE sh_goods ( id INT UNSIGNED PRIMARY KEY AUTO_INCREMENT COMMENT '商品id', category_id INT UNSIGNED NOT NULL DE 阅读全文
posted @ 2022-11-25 11:34 墨圆 阅读(473) 评论(0) 推荐(0)
摘要: <!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> </head> <body> <script type="text/javascript"> //简易计算器 function conuter(number) { 阅读全文
posted @ 2022-11-24 15:09 墨圆 阅读(145) 评论(0) 推荐(0)
摘要: 【简答题】 有一个XSKC数据库,数据库中包括两个表: 学生表Student由学号(Sno)、姓名(Sname)、性别(Ssex)、年龄(Sage)、所在院系(Sdept)五个属性组成,记为: Student(Sno,Sname,Ssex,Sage,Sdept) ,Sno 为关键字。 成绩表SG由学 阅读全文
posted @ 2022-11-04 14:37 墨圆 阅读(1253) 评论(0) 推荐(0)
摘要: <!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> </head> <body> <script type="text/javascript"> let sort=[20,6,19,1,3,88]; console. 阅读全文
posted @ 2022-10-29 15:34 墨圆 阅读(12) 评论(0) 推荐(0)
摘要: Create Database If Not Exists new_book; //创建一个数据库 use new_book; //选择数据库 Create Table user( //创建一个数据表number char(10) Not Null Comment '图书编号',type char( 阅读全文
posted @ 2022-10-20 19:51 墨圆 阅读(291) 评论(0) 推荐(0)