1.疯狂Java讲义的教育源码如何导入eclipse运行?
2.java课程设计源代码(急!!源码育平!线教!台源赤月传奇2源码)
3.java实现每个学生可选修若干们课程的教育代码
4.根据以下的设计要求编写源代码。java
5.源码时代java培训有什么课程内容?源码育平源码上次
疯狂Java讲义的源码如何导入eclipse运行?
Java项目的源代码通过一下四部完成导入到eclipse1、单击eclipse的线教file菜单 ,选择 import project from file system
2、台源在弹出的教育窗口单击 diretory 按钮 选择 Java源代码文件系统所在的目录
3、单击“选择文件夹 ”完成将java源代码导入到eclispe系统
你明白了吗?
java课程设计源代码(急!源码育平!线教!台源!教育灯塔源码)
import java.awt.Color;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.SwingConstants;
import javax.swing.border.LineBorder;
public class game extends JFrame {
private JLabel label_2;
private int number;
private int sum;
final JLabel label = new JLabel();
final JLabel label_1 = new JLabel();
public static void main(String[] args) {
new game();
}
public game() {
super("点?!源码育平");
getContentPane().setLayout(null);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
final JButton button = new JButton();
button.addActionListener(new ActionListener() {
public void actionPerformed(final ActionEvent arg0) {
onClick();
}
});
button.setText("出牌");
button.setBounds(,线教 , , );
getContentPane().add(button);
label.setBorder(new LineBorder(Color.black, 1, false));
label.setHorizontalAlignment(SwingConstants.CENTER);
label.setFont(new Font("", Font.BOLD, ));
label.setText("背面");
label.setBounds(, , , );
getContentPane().add(label);
label_1.setText("你已经拥有的牌:");
label_1.setBounds(, , , );
getContentPane().add(label_1);
this.setBounds(, , , );
this.setVisible(true);
getContentPane().add(getLabel_2());
}
public int randNumber() {
try {
Thread.sleep();
} catch (InterruptedException e) {
e.printStackTrace();
}
return (int) (Math.random() * + 1);
}
public void onClick() {
number = this.randNumber();
this.sum += number;
label.setText("" + number);
String strTemp = this.label_1.getText();
strTemp += "" + number + " ";
label_1.setText(strTemp);
String temp = "合计:" + sum;
label_2.setText(temp);
isWin();
}
public void isWin() {
if (sum > ) {
JOptionPane.showMessageDialog(this, "你输了");
clear();
return;
} else if (sum == ) {
JOptionPane.showMessageDialog(this, "你赢了");
clear();
return;
} else {
int i = JOptionPane.showOptionDialog(this, "是否继续?", "提示",
JOptionPane.OK_CANCEL_OPTION,
JOptionPane.INFORMATION_MESSAGE, null, null, null);
if (i == JOptionPane.OK_OPTION) {
onClick();
} else
return;
}
}
private void clear() {
label_2.setText("合计:");
sum = 0;
number = 0;
label_1.setText("你已经拥有的牌:");
}
/
*** @return
*/
protected JLabel getLabel_2() {
if (label_2 == null) {
label_2 = new JLabel();
label_2.setText("合计:");
label_2.setBounds(, , , );
}
return label_2;
}
}
真好无聊中。。-1110源码
java实现每个学生可选修若干们课程的代码
//课程类
class Course{
public String courseName;
public double courseScore;
public Course(){
courseName = null;
courseScore = 0;
}
public Course(String name, double score){
courseName = name;
courseScore = score;
}
public boolean equals(Object o){
if(((Course)o).courseName == this.courseName && ((Course)o).courseScore == this.courseScore)
return true;
return false;
}
}
//学生类
class Student{
public String stuName;
public int stuID;
public ArrayList<Course> courses;
public Student(){
stuName = null;
stuID = 0;
courses = new ArrayList<>();
}
public Student(String name, int ID, ArrayList<Course> c){
stuName = name;
stuID = ID;
courses = c;
}
//添加新课程
public void addCourse(Course c){
courses.add(c);
}
//搜索并去掉第一个与参数一致的课程,如果没有则返回false
public boolean removeCourse(Course c){
for(int i = 0; i < courses.size(); i++){
if(courses.get(i).equals(c)){
courses.remove(i);
return true;
}
}
return false;
}
public boolean equals(Object o){
if(((Student)o).stuName == this.stuName && ((Student)o).stuID == this.stuID)
return true;
return false;
}
}
//班级类
class Class{
public String className;
public ArrayList<Student> students;
public Class(){
className = null;
students = new ArrayList<>();
}
public Class(String name, ArrayList<Student> s){
className = name;
students = s;
}
//添加新学生
public void addStudent(Student s){
students.add(s);
}
//搜索并去掉第一个与参数一致的学生,如果没有则返回false
public boolean removeStudent(Student s){
for(int i = 0; i < students.size(); i++){
if(students.get(i).equals(s)){
students.remove(i);
return true;
}
}
return false;
}
}
accountKeCheng这个方法不知道是bwfs源码干什么用的所以没写,如果要的话请说明一下我再写出来。
根据以下的设计要求编写源代码。java
class Student{
private String name;
private int age;
public Student(){
this.name = "nobody";
this.age =;
}
public void setName(String name){
this.name = name;
}
public String getName(){
return name;
}
public void setAge(int age){
this.age = age;
}
public int getAge(){
return age;
}
public boolean isSameAge(Student s){
return age == s.age;
}
}
源码时代java培训有什么课程内容?
感谢对源码时代的关注和认可!这是我们的Java学习内容:
第一阶段:JavaSE
第二阶段:数据库(MySQL/Oracle)与JDBC技术
第三阶段:JavaWeb开发技术
第四阶段:大型项目实战-CMS系统
第五阶段:大型项目实战-企业ERP/进销存项目
第六阶段:大型项目实战-CRM/客户关系管理系统
第七阶段:大型项目实战-B2C/商城项目
更相信的课程内容欢迎前往官网进行了解
2024-11-27 19:18
2024-11-27 19:02
2024-11-27 18:27
2024-11-27 18:11
2024-11-27 17:40
2024-11-27 17:18