资源简介
简单的使用SQL语句实现管理,为初学者能熟练掌握SQL语句用法
代码片段和文件信息
import java.util.Scanner;
class User {
private String uname;
private String upass;
public String getUname() {
return uname;
}
public String getUpass() {
return upass;
}
public User(String uname String upass) {
this.uname = uname;
this.upass = upass;
}
}
class Student {
private String sname;
private String sid;
private int yscore;
private int escore;
private int mscore;
public void setSname(String sname) {
this.sname = sname;
}
public void setSid(String sid) {
this.sid = sid;
}
public void setYscore(int yscore) {
this.yscore = yscore;
}
public void setEscore(int escore) {
this.escore = escore;
}
public void setMscore(int mscore) {
this.mscore = mscore;
}
public String getSname() {
return sname;
}
public String getSid() {
return sid;
}
public int getYscore() {
return yscore;
}
public int getEscore() {
return escore;
}
public int getMscore() {
return mscore;
}
public Student() {};
public Student(String sname String sid int yscore int escore int mscore) {
this.sname = sname;
this.sid = sid;
this.yscore = yscore;
this.escore = escore;
this.mscore = mscore;
}
}
public class StuDemo {
static User[] users = new User[10];
static Student[] students = new Student[20];
static Scanner sc = new Scanner(System.in);
public static void main(String[] args) {
String uname = ““;
String upass = ““;
String upass2 = ““;
String sname = ““;
String sid = ““;
int yscore = 0;
int escore = 0;
int mscore = 0;
int sel = -1;
String temp = ““;
flag1:while (true) {
System.out.println(“****学生管理系统****“);
System.out.println(“1.登录“);
System.out.println(“2.注册“);
System.out.println(“3.退出“);
switch ((sel = sc.nextInt())) {
case 1: { //登录
sc.nextLine();
System.out.println(“******用户登录******“);
System.out.println(“请输入用户名:“);
uname = sc.nextLine();
System.out.println(“请输入密码:“);
upass = sc.nextLine();
int y = 0;
for (; y < users.length; y++) {
if (users[y] != null) {
if (uname.equals(users[y].getUname()) &&
upass.equals(users[y].getUpass())) {
break;
}
}
}
if (y == users.length) {
System.out.println(“用户名密码错误!“);
continue flag1;
} else {
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
I.A.... 23165 2009-03-26 12:06 StuDemo.java
----------- --------- ---------- ----- ----
23165 1
- 上一篇:耿祥义--JAVA课程设计
- 下一篇:使用Java编写的绘图板应用程序
相关资源
- Java开发的毕业设计-财务管理系统
- JAVA SWT学生信息管理系统
- 一个简单JAVA+SQL的库存管理系统
- 基于Java+sql教师信息管理系统课设报告
- 合工大java程序设计实验,货物管理系
- Java学生成绩管理系统源码.txt
- ssm框架开发北大青鸟超市后台管理系
- 超市进销存管理系统-学校实训
- shiro-all-1.4.0.jar
- 图书管理系统数据持久化
- java任务管理系统
- java学生信息管理系统源代码
- Java实验报告(房屋销售管理信息系统
- 商场销售管理系统 java netbeans
- java理发店管理系统
- 用java写的一个简单的学生成绩管理系
- java课程设计---学生信息管理系统 源代
- android小米文件管理器源码
- 数据库课程设计(JDBC+Swing)高校教材
- jsp+web+简单学生管理系统+mysql
- java+Swing+学生事务管理系统
- 宿舍管理系统Java开发,sql数据库
- j2ee图书管理系统
- java的通讯录管理系统(适合初学者)
- 数据库课程设计-学生学籍管理系统
- 安卓版仓库管理系统
- Java人员信息管理系统
- SQLServer数据库课程设计图书馆管理系
- android 为知 专业个人知识管理 笔记软
- Javaweb学生信息管理系统244326
评论
共有 条评论