-
Java大型的商城网站,开源!!!!
不错的代码,可以学习。里面有xml解析,CVS报表格式导出,文件日志,json数据的传递等等,技术使用较多,对初学者会有体会。
- 2023-01-14 05:50:03下载
- 积分:1
-
COLLEGE MANAGMENT SYSTEM
它是为拼贴管理而设计的。它有学生部分,以增加学生的细节,如分支,课程等。
- 2022-01-22 03:12:33下载
- 积分:1
-
android opengl 综合运用
一些android上关于opengl综合运用的例子,简单明了,适合想学好android却又苦于不知道如何开始的新手!里面的一些例子在android开发平台上都通过测试!
- 2022-03-14 15:21:56下载
- 积分:1
-
学生管理系统-java版
资源描述学生管理系统源代码,使用java语言编写,ssh框架,用来学习java编程,java建站,是非常不错的资源。
- 2022-07-14 03:33:55下载
- 积分:1
-
2048 java 代码
2048 java 代码
- 2022-01-25 15:07:36下载
- 积分:1
-
最新java编程题全集
最新java编程题全集,50个经典程序,java笔试用到了
- 2022-04-10 23:22:36下载
- 积分:1
-
tts中文朗读
TTS,java 语音 朗读,有源码和实例,可以直接运行看效果-TTS, java Speech
- 2022-03-20 00:07:55下载
- 积分:1
-
猜数字游戏
每次游戏程序随机产生一个0-9之间的整数,要求玩家输入自己猜的数字,并对用户输入数字进行检查,进行如下提示:
如果用户猜对了,则提示:恭喜你,猜对了。结束本次游戏。
如果用户猜错了,则提示:你猜的数字太(大或小)了。要求用户继续猜。
如果连续3次没有猜对,则提示:游戏失败。
一次游戏结束时,提示用户是否继续新的游戏,果用户选择继续,则开始新一次游戏,否则输出:你共进行了XXX次游戏,成功XXX次,失败XXX次。然后结束程序运行
- 2022-07-21 04:55:42下载
- 积分: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
-
android陀螺仪应用
用于android手机中陀螺仪姿态角检测,包含了KF算法。
可以用于各种手机姿态、倾角检测。
// Integrate around this axis with the angular speed by the timestep
// in order to get a delta rotation from this sample over the timestep
// We will convert this axis-angle representation of the delta rotation
// into a quaternion before turning it into the rotation matrix.
- 2022-03-04 23:31:56下载
- 积分:1