-
clock time military format
以军用格式显示时间以军用格式显示时间以军用格式显示时间以军用格式显示时间以军用格式显示时间
- 2022-12-16 13:55:03下载
- 积分:1
-
shiro权限管理系统
基于java的shiro权限认证系统,非常适合常用web管理系统的权限认证和授权,适合中小型web系统
- 2022-04-01 18:43:38下载
- 积分:1
-
java 语音聊天
java 语音聊天关键两个类的源代码,能实现点对点的语音通信网络语音通话通常是双向的,就模型层面来说,这个双向是
对称的。为了简单起见,我们讨论一个方向的通道就可以了。一方说话,另一方则听到声音。看似简单而迅捷,但是其背后的
流程却是相当复杂的。
- 2022-03-17 20:36:03下载
- 积分:1
-
teste teste teste
XCDSCSC公司
- 2022-08-16 12:14:01下载
- 积分:1
-
hadoop源码
hadoop源码,包中有多个hadoop源程序,对初学者很有用。里面包括了好多mapreduce程序。希望能够帮助大家。
- 2022-04-02 03:33:32下载
- 积分:1
-
Javascool: 菜单界面持有 cliquable
设身处地操纵 des couleurs en classe de 牵拉 S 来 ISN avec 接口 grphique 菜单 cliquable 钢琴
- 2022-08-20 10:48:58下载
- 积分:1
-
简单权限管理系统
1部门管理:主要实现部门资料的增加、修改、删除。操作界面如下:2、用户管理:主要实现用户资料的增加、修改、删除以及对用户授予角色。操作界面如下:3、角色管理:主要实现角色资料的增加、修改、删除以及对角色设置菜单权限。
- 2022-03-24 09:37:36下载
- 积分:1
-
通用派叫号系统
派叫号系统很好地解决客户在服务机构办理业务时所遇到的各种排队、拥挤和混乱现象,为客户办理业务带来莫大的方便和愉悦。
- 2023-02-20 12:00:04下载
- 积分:1
-
汽车加油问题
一个汽车加满油后可行驶n公里,由起点a到起点b为m公里。汽车出发时加满了油,途中设有k个加油站,d1是第一个加油站距起点的距离,di是第i个加油站距其前一个加油站的距离。设计一个算法,求出加油方案,使得加油次数最少即可到达终点。
- 2022-06-19 23:25:44下载
- 积分:1
-
小游戏五子棋大战
class LNode{
private int row;
private int col;
private Color chessColor;
private LNode next;
public LNode(int row,int col,Color chessColor){
this.row=row;
this.col=col;
this.chessColor=chessColor;
}
public LNode(){
this.next=null;
}
public void setRow(int row){
this.row=row;
}
public int getRow(){
return this.row;
}
public void setCol(int col){
this.col=col;
}
public int getCol(){
return this.col;
}
public void setChessColor(Color chessColor){
this.chessColor=chessColor;
}
public Color getChessColor(){
return this.chessColor;
}
public void setNext(LNode next){
this.next=next;
}
public LNode getNext(){
return this.next;
}
}
class NullAndCount{
private int nullCount=0;
private int chessCount=0;
public void setNullCount(int nullCount){
this.nullCount=nullCount;
}
public int getNullCount(){
return this.nullCount;
}
public void setChessCoun
- 2022-05-08 02:47:07下载
- 积分:1