可按Ctrl+D收藏 蚂蚁资源网

蚂蚁资源网

java选课系统(jsp管理系统)

  • 全部评论(3)
  • 追梦
  • #include <stdio.h>#include <stdlib.h>#include <string.h>typedef struct subjects{ int num; char name[20]; char kind[10]; int stime; int ttime; int etime; int score; int term; struct subjects *next;}SUB; SUB *create_form(){ SUB *head,*tail,*p; int num,stime,ttime; int etime,score,term; char name[20],kind[10]; int size=sizeof(SUB); head=tail=NULL; printf("输入选修课程信息:\n"); scanf("%d %s %s %d %d %d %d %d",&num,&name,&kind,&stime,&ttime,&etime,&score,&term); while(num!=0){ p=(SUB *)malloc(size); p->num=num; strcpy(p->name,name); strcpy(p->kind,kind); p->stime=stime; p->ttime=ttime; p->etime=etime; p->score=score; p->term=term; if(head==NULL) head=p; else tail->next=p; tail=p; scanf("%d %s %s %d %d %d %d %d",&num,&name,&kind,&stime,&ttime,&etime,&score,&term); } tail->next=NULL; return head;} void savefile(SUB *head){ SUB *p; FILE *fp; fp=fopen("subjects.txt","w"); fprintf(fp,"课程编号 课程名称 课程性质 总学时 授课学时 实验或上机学时 学分 开课学期\n"); for(p=head;p;p=p->next) fprintf(fp,"%5d%12s%9s%9d%9d%11d%11d%7d\n",p->num,p->name,p->kind,p->stime,p->ttime,p->etime,p->score,p->term); fclose(fp);} void savefileadd(SUB *head){ SUB *p; FILE *fp; fp=fopen("subjectsadd.txt","w"); fprintf(fp,"课程编号 课程名称 课程性质 总学时 授课学时 实验或上机学时 学分 开课学期\n"); for(p=head;p;p=p->next) fprintf(fp,"%5d%12s%9s%9d%9d%11d%11d%7d\n",p->num,p->name,p->kind,p->stime,p->ttime,p->etime,p->score,p->term); fclose(fp);} void savefiledel(SUB *head){ SUB *p; FILE *fp; fp=fopen("subjectsdel.txt","w"); fprintf(fp,"课程编号 课程名称 课程性质 总学时 授课学时 实验或上机学时 学分 开课学期\n"); for(p=head;p;p=p
  • 2022-01-06 14:57:20
  • 知了科技
  • 当人们有更多的学生拯救他时,然后以课程的形式添加一个段落,检查是否有一个完整的人,如果有人完整,检查是否有人排队,如果一切都是如此,第一个排队的学生就是如此搬到选举中。
  • 2022-01-06 14:56:13
  • 免注册用户
  • java写一个简单的学生选课提醒,有增删改查就好,我这里刚刚有一个“网上考试系统”,大三时候Java的考试,非桌面程序,来是Web程序,用的都是Java基础,功能除了你所说的对学生的增删改查(包含在系统的考生管理模块里面)以外,还源包括对试题的操作,笔试成绩的录入,后门程序修改成绩。试卷生成的时候,题目2113和题目答案都是随机的。用到的都是Java基础知识5261,数据库用的是玩具级的Access。当中包含的Java知识有:1、Java基础2、Servlet + JSP+Javabean3、JDBC连接数据库(连Access有几种方式,常见的是JDBC-ODBC桥的方式,但我这里用的是直接连接.mdb数据库文4102件的方式连接,这样1653可以方便程序移植到任何机器上面而不需要配置数据源,当然前提是你要有Access)4、简单的JavaScript
  • 2022-01-06 14:56:13
  • 商品推荐