- 博客(39)
- 问答 (1)
- 收藏
- 关注
转载 java实现的日历
import java.util.Calendar; import java.util.GregorianCalendar; public class CalendarDemo2 { /** * @param args */ public static void main(String[]
2017-12-03 22:14:51
400
转载 java第一周培训学习心得
首先很高兴能和这么多的同学相聚在一起共同学习,共同努力。学习的时间已经过去一周了,虽然我已经学过老师上课的相关java知识,但加深了我对一些理论知识的理解,不仅使我在理论上对java有了全新的认识,而且在实践能力方面也得到了一些提升,下面是我学习了java一周之后的心得体会。java语言是一种与平台无关的编程语言,通过java编写的程序可以在不同的系统平台上运行。只需在操作系统上安装一个jav
2017-12-03 22:13:32
1003
原创 先进先出页面置换算法c语言源码
#include #define M 20 #define N 3 void FIFO(int a[N],int b[M]) {int i,j,k; int c[M]={0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
2017-11-25 21:45:48
7740
原创 格雷码源码~~
package action;import java.util.*;public class GrayCode {public static String[] grayCode(int n) {String[] array = new String[(int) Math.pow(2, n)];if (n == 1) {array[0] = "0";
2017-11-24 23:00:52
408
转载 棋盘覆盖java代码
public class QiPan { /** * =2^k。棋盘的规格为2^k*2^k * */ public static void ChessBoard(int tr, int tc, int dr, int dc, int size) { if (size
2017-11-23 21:07:52
943
原创 斐波那契递归100次要多长时间???
要是100次太久,50次也是可以的~~~#include #include long fib (int n) { return n}int main () { double x; x = clock() / CLOCKS_PER_SEC; fib(100); x = clock() / CLOCKS_PER_SEC - x;
2017-11-23 20:04:31
1340
1
原创 仿百度联想搜索框
Document*{margin: 0;padding: 0;}.title {display: block;margin: 100px auto 0px;width: 280px;height: 130px;}.show{width:625px;height: 35px;margin: 20px auto;position: relative;}#
2017-11-19 22:55:28
821
转载 解决org.apache.jasper.JasperException: Failed to load or instantiate TagLibraryVal
今天使用JSTL,下载JSTL1.1.2后,引入项目, web.xml配置taglib时,报错,因为web.xml使用的是JSP2.4,所以在taglib外面加一个jsp-config标签解决此问题 重启服务器后,出现这个错误: org.apache.jasper.JasperException: Failed to load or instantiate TagLibraryVa
2017-11-17 23:06:55
4482
转载 纯CSS模态窗口实现炫酷动画效果(部分代码)
Modalbody,html{margin: 0;padding: 0;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;-ms-flex-direction: column;flex-direction: column;height: 100vh;width: 100v
2017-11-06 22:57:38
987
原创 纯CSS3文章卡片UI设计效果
A Article Effect*{margin: 0;padding: 0;}body{background: #eee;}.warp{margin: 50px auto 60px auto;width: 100%;display: flex;align-items: space-around;max-width: 1200px;}.tile{widt
2017-11-06 22:23:50
1630
原创 字符串的简单处理~~
首字母大写,字母和数字之间要用_连起来,多余的空格去掉 package code;import java.util.Scanner;import java.util.Vector;public class Demo1 {public static void main(String[] args) {Scanner in = new Scanner(Syste
2017-11-02 22:53:25
301
原创 纯CSS3时尚价格设计源码
PriceTable时尚价格表设计A Pricing TableStandard$10/mo 50GB Disk Space 50 Email Accounts
2017-10-31 21:45:53
488
原创 HTTP Status 500 - An exception occurred processing JSP page /index.jsp at line 177
这个是什么错啊??大神们帮解决一下可以吗type Exception reportmessage An exception occurred processing JSP page /index.jsp at line 177description The server encountered an internal error that prevented it from fulfi
2017-10-20 22:46:26
10576
1
原创 GET http://localhost:8080//js/jquery-3.1.1.min.js
有谁知道这个错误怎么解决吗GET http://localhost:8080//js/jquery-3.1.1.min.js index.jsp:46 Uncaught TypeError: navigator.mediaDevices.getUserMedia is not a function
2017-10-17 12:33:12
19348
3
原创 前端浮动表单~~
Documentbody{background: #e4ece5; color: #363636; font-size: 16px; font-family: 'Cantarell', sans-serif; line-height: 22px;} .rf_submit{background: none; border-radius: 4px; b
2017-10-16 22:33:28
648
转载 软件工程小项目~企业员工信息管理系统-需求分析~~
理解需求1.管理员进入系统后能够狠清晰的看到企业的组织形式,并能够很方便的进入到各个管理功能模块。2.管理员能够根据企业的实际来实时的改变系统中机构组织,主要的改变包括:当有新部门成立时,要将新部门加入到系统中,当有部门发生变更时,如更名,上级部门改变了等,要将变更的信息在系统中及时更新,当有部门被撤销时,要从系统中将该部门的信息删除。3.企业的机构组织是分级的,级数最多可以有6级。
2017-10-13 21:59:40
4828
原创 js带摇晃风格的小清新登录注册表单
document*{margin: 0;padding: 0;}.login-page{width: 360px;padding: 8% 0 0;margin: auto;}.form{position: relative;z-index: 1;background: #FFFFFF;max-width: 360px;margin: 0 auto 100px
2017-10-09 22:09:03
347
原创 简单的小清新表单登录注册页面~~
document*{margin: 0;padding: 0;}.login-page{width: 360px;padding: 8% 0 0;margin: auto;}.form{position: relative;z-index: 1;background: #FFFFFF;max-width: 360px;margin: 0 auto 1
2017-10-08 22:46:30
741
转载 老外对你放狠话都不知道?常见英语口语“狠话”!
1. You make me sick! 你真让我恶心! 2. Don’t push me. 别逼我! 3. What’s wrong with you? 你怎么回事? 4. You shouldn’t have done that! 你真不应该那样做! 5. Y
2017-09-30 22:19:47
1350
原创 选项卡的完整代码~~还有一些自己copy
选项卡制作*{margin: 0;padding: 0;}ul,h3,p{margin: 0;padding: 0;}#nav ul li p a{text-decoration: none; color: #928F8F; font-size: 14px;} a:hover{text-decoration: underline;} #nav{width
2017-09-26 23:00:34
325
原创 前端~腾讯课堂选项卡部分代码
选项卡制作*{margin: 0;padding: 0;}ul,h3,p{margin: 0;padding: 0;}a{text-decoration: none; color: #928F8F; font-size: 14px;} a:hover{text-decoration: underline;}#nav{width: 220px;background
2017-09-20 22:14:05
1899
原创 智能密码~~附上链接
https://www.intuitivepassword.com/zh_CN?utm_source=www.appinn.com
2017-09-18 22:47:14
447
原创 js360导航拖住效果~
//(function($){var Carousel = function(poster){var me =this;this.poster = poster;this.posterItemMain = poster.find(".poster-list");this.nextBtn = poster.find(".poster-next-btn");this.prevB
2017-09-17 21:20:27
443
原创 js做的打字小游戏~按下键盘的时候为什么没有反应,附上我的代码
这个小项目已经做了很久了,牛牛们帮解决一下吧~~~~~$(window).keyup(function (){ var eve = window.event || e;var imgs = $("#game").children();if(flag){ for( var i = 0 ; i var img = imgs[i];var code
2017-09-17 12:36:26
428
原创 myeclipse连数据库代码~
import java.sql.*;public class Test {public static void main(String[] args){String driverName = "com.microsoft.sqlserver.jdbc.SQLServerDriver";String dbURL = "jdbc:sqlserver://localhost:14
2017-09-16 22:47:02
640
原创 JS幻灯片切换效果
/** * jQuery Carousel.js * 旋转木马 */; (function($) { var Carousel = function(poster) { var me = this; this.poster = poster; this.posterItemMain = poster.find(".p
2017-09-13 21:53:00
1910
原创 写了好久越来越多错了!!!!发下我的源代码牛牛们帮看一下
js做的打字小游戏 FirstGame *{margin:0;padding:0;} #box{width:100%;height:100vh;background:url(img/bg.png) no-repeat;background-size:100% 100%;position:relati
2017-09-13 00:03:00
302
原创 求助~~js做的打字小游戏
运行结束(得分为-100)的时候就会出现下面这个错误FirstGame.html:123 Uncaught ReferenceError: createImgInterval is not defined可是我已经定义了这个了,有牛牛帮解决一下的吗下面是提示错误的代码:if(score == -100){flag = false;$(".reload").a
2017-09-11 22:04:52
467
原创 js出现了Uncaught SyntaxError: Unexpected token .
明明这个就有了个. 为什么还会报错呢 代码如下:carouselRotate: function(dir){var _this_ = this;var zIndexArr = [];if(dir == "left"){this.posterItems.each(function(){var self = $(this),prev = self.prev()
2017-09-07 18:59:22
597
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人