-
jiqingtaiqiu
ANDROID系统3D游戏开发源程序,桌面类游戏《激情台球》(ANDROID system 3D game development source, desktop games " passion for billiards)
- 2012-07-06 15:41:59下载
- 积分:1
-
网页的下拉自动加载
div id="wrapper">
Scroll to Top
Fetching pins…
- 2022-07-22 20:19:35下载
- 积分:1
-
gd32F303实例
【实例简介】小熊派GD32学习过程中的资料和编写的代码
- 2021-06-25 00:31:12下载
- 积分:1
-
android 将图片与二维码结合 实例源码下载
本demo是仿微信的二维码名片 本身google的二维码是一个开源的项目我们要制作一个二维码很简单 本例的作用是将图片与二维码结合,当然图片不能太大 ,要不然二维码读不出来。
- 2015-05-06下载
- 积分:1
-
驾考宝典
驾考宝典的大部分内容,包含科目一、科目二、科目三、科目四等基础内容,还有新浪微博分享的功能实现。
- 2022-06-28 09:35:32下载
- 积分:1
-
GPS
一份在android下学习GPS和运用百度地图api(Learning to use a GPS and Baidu map api in android)
- 2013-12-12 12:42:10下载
- 积分:1
-
关于多目标问题的 jMetal
此代码是由 jMetal 关于多目标问题。内容编码的 SPEA2、 粒子群优化算法、 粒子,和其他人。真正组织代码。
- 2022-03-25 20:40:27下载
- 积分:1
-
公交车管理系统
这公交车管理系统包括总线的详细信息。它存储总线信息和员工信息。
本系统管理的公交车路线和预订的客户。它涉及管理财务状况和员工的薪资。 跟踪的出发和到达的公交车。 此系统还具有公共汽车保险详细信息
- 2022-03-28 18:42:35下载
- 积分:1
-
TestMediaMetadataRetriever
android 获取视频缩略图源代码,下载直接使用。(android access to the the video thumbnails source code download directly use.)
- 2012-10-27 14:44:50下载
- 积分: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