• 大小: 2KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-14
  • 语言: Java
  • 标签: 管理  

资源简介

简单的使用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


评论

共有 条评论