资源简介
该资源为基于Java的四则运算练习系统,用户可以在该系统进行练习,考试,查看错题,和进行算法小游戏。练习和考试可以选择难度,通过考试后会提升自己的能力等级,解锁更高难度的测试。练习和考试中错的题目将记载入错题本,错题本中的题目用户可以查看和删除。算法游戏是2048。项目可以直接导入eclipse。且包含了设计文档,直击课程设计!用户接口为图形界面(GUI),代码设计模式为MVC设计模式。用户信息和题库都是XML格式。
代码片段和文件信息
package gui.controller.event;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Stack;
import javax.swing.JPanel;
import gui.view.frame.Basicframe;
public class BackIconListener implements ActionListener
{
private Basicframe basicframe;
public BackIconListener(Basicframe basicframe)
{
this.basicframe = basicframe;
}
@Override
public void actionPerformed(ActionEvent e)
{
Stack stack = basicframe.stack;
if (stack.size() > 1)
{
JPanel popPanel = stack.pop();
basicframe.remove(popPanel);
JPanel top = stack.peek();
top.setVisible(true);
basicframe.add(top);
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3698327 2019-05-10 19:58 Java课程设计报告书.docx
文件 3303 2019-05-10 20:00 arithmetic\.classpath
文件 386 2019-05-10 20:00 arithmetic\.project
文件 64 2019-05-10 20:00 arithmetic\.settings\org.eclipse.core.resources.prefs
文件 598 2019-05-10 20:00 arithmetic\.settings\org.eclipse.jdt.core.prefs
文件 1222 2019-05-10 20:00 arithmetic\bin\gui\controller\event\BackIconListener.class
文件 4235 2019-05-10 20:00 arithmetic\bin\gui\controller\event\BeforeListener.class
文件 2469 2019-05-10 20:00 arithmetic\bin\gui\controller\event\DeleteWrongTopicListener.class
文件 5312 2019-05-10 20:00 arithmetic\bin\gui\controller\event\GameControl.class
文件 1220 2019-05-10 20:00 arithmetic\bin\gui\controller\event\HomeGameListener.class
文件 1088 2019-05-10 20:00 arithmetic\bin\gui\controller\event\HomePracticeListener.class
文件 1072 2019-05-10 20:00 arithmetic\bin\gui\controller\event\HomeTestListener.class
文件 1081 2019-05-10 20:00 arithmetic\bin\gui\controller\event\HomeWrongListener.class
文件 4238 2019-05-10 20:00 arithmetic\bin\gui\controller\event\NextListener.class
文件 1663 2019-05-10 20:00 arithmetic\bin\gui\controller\event\PracticeListener.class
文件 765 2019-05-10 20:00 arithmetic\bin\gui\controller\event\PracticeSubmitCloseListener.class
文件 3564 2019-05-10 20:00 arithmetic\bin\gui\controller\event\SubmitListener.class
文件 1304 2019-05-10 20:00 arithmetic\bin\gui\controller\event\TestDifficultyListener.class
文件 1635 2019-05-10 20:00 arithmetic\bin\gui\controller\event\TestListener.class
文件 737 2019-05-10 20:00 arithmetic\bin\gui\controller\event\TestSubmitCloseListener.class
文件 1190 2019-05-10 20:00 arithmetic\bin\gui\controller\event\UserIconListener.class
文件 679 2019-05-10 20:00 arithmetic\bin\gui\controller\event\UserPanelListener.class
文件 4140 2019-05-10 20:00 arithmetic\bin\gui\controller\operation\SubmitOperation.class
文件 1945 2019-05-10 20:00 arithmetic\bin\gui\controller\operation\TestOperation.class
文件 3492 2019-05-10 20:00 arithmetic\bin\gui\controller\operation\UserOperation.class
文件 3373 2019-05-10 20:00 arithmetic\bin\gui\controller\operation\WrongTopicOperation.class
文件 1056 2019-05-10 20:00 arithmetic\bin\gui\main\Main.class
文件 468 2019-05-10 20:00 arithmetic\bin\gui\main\UnitTest.class
文件 1974 2019-05-10 20:00 arithmetic\bin\gui\model\dto\PracticeOption.class
文件 8417 2019-05-10 20:00 arithmetic\bin\gui\model\dto\PracticingState.class
............此处省略109个文件信息
相关资源
- java-图片识别 图片比较
- android毕业设计
- java23种设计模式+23个实例demo
- java Socket发送/接受报文
- JAVA828436
- java界面美化 提供多套皮肤直接使用
- 在线聊天系统(java代码)
- 基于Java的图书管理系统807185
- java中实现将页面数据导入Excel中
- java 企业销售管理系统
- java做的聊天系统(包括正规课程设计
- Java编写的qq聊天室
- 商店商品管理系统 JAVA写的 有界面
- JAVA开发聊天室程序
- 在linux系统下用java执行系统命令实例
- java期末考试试题两套(答案) 选择(
- JAVA3D编程示例(建模、交互)
- Java 文件加密传输
- java做的房产管理系统
- 基于jsp的bbs论坛 非常详细
- [免费]java实现有障碍物的贪吃蛇游戏
- java Servlet投票实例
- 操作系统作业 (pv,作业管理,等5个
- 基于C/S架构考试系统(Java)
- java access 仓库管理系统 源码
- 一元多项式相加 java实现
- java软件工程师简历模板——应届生
- DES(CFB) JAVA
- java读取局域网共享机器文件
- [免费]java学习 存储过程
评论
共有 条评论