效果图: 代码: 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="ht ...
分类:
Web程序 时间:
2016-09-07 21:09:22
阅读次数:
217
效果图: 代码如下: 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns=" ...
分类:
Web程序 时间:
2016-09-07 09:10:59
阅读次数:
232
代码: 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http:// ...
分类:
Web程序 时间:
2016-09-06 18:13:46
阅读次数:
157
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Collections; namespace 练习0 ...
分类:
其他好文 时间:
2016-09-06 11:58:08
阅读次数:
145
/*
二叉树小练习子数组8皇后92种情况
*/
#include<bits/stdc++.h>
usingnamespacestd;
#include<iostream>
usingnamespacestd;
typedefstructnode
{
intx;
node*lc;
node*rc;
node(){}
node(intxx){x=xx;lc=NULL;rc=NULL;}
}*BiTree;
intss[]={4,2,1,0,0,3,0,0,6,5..
分类:
其他好文 时间:
2016-09-01 00:36:18
阅读次数:
126
小练习4:输入提示框 任务描述 在和上一任务同一目录下面创建一个task0002_4.html文件,在js目录中创建task0002_4.js,并在其中编码,实现一个类似百度搜索框的输入提示的功能。 要求如下: 允许使用鼠标点击选中提示栏中的某个选项 允许使用键盘上下键来选中提示栏中的某个选项,回车 ...
分类:
编程语言 时间:
2016-08-30 22:34:12
阅读次数:
545
任务描述 在和上一任务同一目录下面创建一个task0002_2.html文件,在js目录中创建task0002_2.js,并在其中编码,实现一个倒计时功能。 界面首先有一个文本输入框,允许按照特定的格式YYYY-MM-DD输入年月日; 输入框旁有一个按钮,点击按钮后,计算当前距离输入的日期的00:0 ...
分类:
编程语言 时间:
2016-08-30 00:08:04
阅读次数:
164
最近马上就要学习QT了,在此复习一下C++一些基本的知识。即:封装,继承,多态。还有this,new,delete,namespace等关键字的用法。 IDE:QT creator 2.8.0 操作系统:windows XP 游戏介绍:游戏才用回合制,相互“伤害”,血量为0或者为负值的一方战败,游戏 ...
分类:
编程语言 时间:
2016-08-29 22:08:54
阅读次数:
321
/*练习题: * 在Mysql数据库中创建一个person数据表,添加三个字段,id,user,password,并录入几条记录 * *练习题:定义一个login.html,里面定义了两个请求字段:user,password,发送请求到loginServlet。 *再创建一个,LoginServle ...
分类:
数据库 时间:
2016-08-26 21:18:43
阅读次数:
181