上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 30 下一页
摘要: 项目结构: 实现功能:顶会热词的增删改查 效果图如下: 阅读全文
posted @ 2022-05-16 12:23 Lindseyyip 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 利用python爬虫实现百度翻译英文单词,代码如下 import requests base_url = 'https://fanyi.baidu.com/sug' kw = input('请输入要翻译的英文单词:') data = { 'kw': kw } headers = { # 由于百度翻译 阅读全文
posted @ 2022-05-15 10:21 Lindseyyip 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 项目结构图: 题目要求: 实验步骤: 1.addstudent.jsp(添加学生) 2.addsave.jsp(将要添加的学生信息导入数据库) 3.deletestudent.jsp(从数据库中删除对应的学生信息) 4.error.jsp(在程序错误时,输出错误信息) 5.index.jsp(程序首 阅读全文
posted @ 2022-05-14 12:00 Lindseyyip 阅读(99) 评论(0) 推荐(0) 编辑
摘要: pactket tracer:https://www.packettracernetwork.com/download/download-packet-tracer.html 选择最后一个选项,然后会要求注册思科账户,注册完登录以后会出现没有netacad account的问题 就去https:// 阅读全文
posted @ 2022-05-13 07:32 Lindseyyip 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 写了一个简单的图书管理系统 最后实现了这两页的所有功能 阅读全文
posted @ 2022-05-12 22:32 Lindseyyip 阅读(17) 评论(0) 推荐(0) 编辑
摘要: <?php$name="";$pass="";$repass="";if(!empty($_POST)){ $name=$_POST["name"]; $pass=$_POST["password"]; $repass=$_POST["repassword"]; if($name==""){ ech 阅读全文
posted @ 2022-05-12 00:05 Lindseyyip 阅读(15) 评论(0) 推荐(0) 编辑
摘要: <?php$sum = 0;if (!empty($_POST)) { $n = $_POST['num']; for ($i = 1; $i <= $n; $i++) { $sum = $sum + $i; } echo "<script>alert('1+2+..+$n=$sum')</scri 阅读全文
posted @ 2022-05-11 00:03 Lindseyyip 阅读(19) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>POST请求</title></head><body><h1 style="text-align: center;color: orangered">意见反馈</h 阅读全文
posted @ 2022-05-10 13:43 Lindseyyip 阅读(21) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>GET请求</title></head><body><form id="form1" name="form1" method="get" action="1.php 阅读全文
posted @ 2022-05-09 09:42 Lindseyyip 阅读(10) 评论(0) 推荐(0) 编辑
摘要: <%@ page language="java" contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>注册</ 阅读全文
posted @ 2022-05-08 21:36 Lindseyyip 阅读(155) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 30 下一页