摘要: 注册页面 <form action="dologin.jsp" method="post"> 用户名:<input id="username" type="text" name="username"/><br/> 密码:<input id="password" type="password" nam 阅读全文
posted @ 2021-04-19 17:08 一只小阿giao 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 数据库 <%-- Created by IntelliJ IDEA. User: Dell Date: 2021/4/10 Time: 14:34 To change this template use File | Settings | File Templates. --%> <%@ page 阅读全文
posted @ 2021-04-12 17:40 一只小阿giao 阅读(35) 评论(0) 推荐(0) 编辑
摘要: <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 阅读全文
posted @ 2021-03-28 22:06 一只小阿giao 阅读(55) 评论(0) 推荐(0) 编辑
摘要: <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>for 阅读全文
posted @ 2021-03-12 08:11 一只小阿giao 阅读(48) 评论(0) 推荐(0) 编辑
摘要: <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme() 阅读全文
posted @ 2021-03-04 21:46 一只小阿giao 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 1.什么是软件缺陷?软件缺陷的产生对软件有什么影响? 1>从产品内部看,缺陷是软件产品开发或维护过程中存在的错误、毛病等各种问题;从产品外部看,缺陷是系统所需要实现的某种功能的失效或违背。在软件开发生命周期的后期,修复检测到的软件错误的成本较高。 2>(1)需求不明确。软件需求不清晰或者开发人员对需 阅读全文
posted @ 2021-03-04 16:09 一只小阿giao 阅读(73) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.co 阅读全文
posted @ 2020-09-20 21:15 一只小阿giao 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-08-29 21:09 一只小阿giao 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 把多个企鹅的信息添加到集合中 查看企鹅的数量及所有企鹅的信息 删除集合中部分企鹅的元素 判断集合中是否包含指定企鹅 package abc; import java.util.ArrayList; public class test { public static void main(String[ 阅读全文
posted @ 2020-06-01 23:09 一只小阿giao 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 1.编写一个随机生成 10个 0(包括) 到 100 之间的随机正整数。 public class Random { public static void main(String[] args) { int[] arr = new int[10]; for(int i = 0; i < 10; i+ 阅读全文
posted @ 2020-05-28 11:51 一只小阿giao 阅读(250) 评论(0) 推荐(0) 编辑