c课程评教系统课程设计
A. 评教系统课程设计怎么做还要写出代码,写出三百字的总结,交个系统光盘
我有评教系统程序的课程设计
B. 在线等!!!急求C++课程设计,高手帮帮忙!!!
你要是追加分数我给你一份人事管理系统全套的,你改改就可以用了。
C. java问题 解决小问题给50 帮我整合一下课程设计可以给300
编译期不认识choole类型,估计是你jar包没导入。
应该是一个类名,首字母要大写的。
D. 邢台学院评教系统怎么进啊
你可以首先登陆:http://60.6.238.20/jwweb/,打开页面后,在“公共下载”一栏中,你会看到“邢台学院网上评教操作流程”,将这个文本下载到电脑中,然后打开后,内容如下:(备注:如果需要,最好自己将原文本下载下来看,因为原文本中还有图示,清晰明了,以下内容中省略图示),祝你好运!
网上评教操作流程说明
学生进行网上评教:
1、以学生身份登陆教务网络管理系统的WEB端:http://60.6.238.20/jwweb/,或者在教务处主页左侧“快速通道”上点击“新教务系统网页端入口”
2、点击“登陆”后,进入以下界面:
3、点击“提交问卷调查”,进行某门课程的问卷提交:
以下是设置好的较简单的问卷调查表:
将填写框中将答案填好后,点击“提交”按钮,则完成了对这门课程的任课教师的教学测评。
若点击“提交教学评价表”,进行某门课程的教学评价提交:
以下是就是教学评价表:
将每项的选项填好后,点击“提交”按钮,则完成了对这门课程的任课教师的教学测评。
E. 急求管理信息系统课程设计——学生评教系统!!!
不免费的要吗
F. 用C++编写一个学生评教管理系统 要求:该系统主要处理学生评教的相关信息 学
哦哦 这样的话 就是需要定制写了,
也就是说得需要付费的
所以说 你还需要吗?
我可以解决C++的这类的东西的
G. 求高手帮忙用c++做一个课程设计
好,这个我就可以。
H. c++编写学生评教管理系统
好久没写了,一直在写pascal,今天给大家做个参考:
#include <iostream.h>
#include <string>
using namespace std;
class person
{public:
struct date
{
short int year;
int month;
int day;
};
char name[8],sex[8],address[30];
date brithday;
void read()
{
cout<<"Please input name of person(只能为字符,包括汉字):"<<endl;
cin>>name;
cout<<"Please input sex of person(只能为字符,包括汉字):"<<endl;
cin>>sex;
cout<<"Please input address of person(只能为字符,包括汉字):"<<endl;
cin>>address;
cout<<"Please input brithday.year of person(只能为数字):"<<endl;
cin>>brithday.year;
cout<<"Please input brithday.month of person(只能为数字):"<<endl;
cin>>brithday.month;
cout<<"Please input brithday.day of person(只能为数字):"<<endl;
cin>>brithday.day;
}
void show()
{
cout<<"name:"<<name<<endl;
cout<<"sex:"<<sex<<endl;
cout<<"address:"<<address<<endl;
cout<<"brithday:"<<brithday.year<<"/"<<brithday.month<<"/"<<brithday.day<<endl;
}
};
class student:public person
{public:
struct course
{
string cname[16];
};
struct date
{
int year;
int month;
int day;
};
char sclass[6];
char major[16];
course courses;
date sregister;
void read_1()
{
cout<<"Please input class of stent(输入学生班级):"<<endl;
cin>>sclass;
cout<<"Please input major of stent(输入学生所在系):"<<endl;
cin>>major;
cout<<"Please input coursrs of stent(只能为字符,包括汉字):"<<endl;
cin>>courses.cname[0];
cin>>courses.cname[1];
cin>>courses.cname[2];
cin>>courses.cname[3];
cin>>courses.cname[4];
cin>>courses.cname[5];
cout<<"Please input register.year of stent(只能为数字):"<<endl;
cin>>sregister.year;
cout<<"Please input register.month of stent(只能为数字):"<<endl;
cin>>sregister.month;
cout<<"Please input register.day of stent(只能为数字):"<<endl;
cin>>sregister.day;
}
void show_1()
{
cout<<"sclass:"<<sclass[0]<<" "<<sclass[1]<<" "<<sclass[2]<<" "<<sclass[3]<<" "<<sclass[4]<<" "<<sclass[5]<<endl;
cout<<"major:"<<major<<endl;
cout<<"coursrs:"<<courses.cname[0]<<" "<<courses.cname[1]<<" "<<courses.cname[2]<<" "<<courses.cname[3]<<" "<<courses.cname[4]<<" "<<courses.cname[5]<<endl;
cout<<"sregister:"<<sregister.year<<"/"<<sregister.month<<"/"<<sregister.day<<endl;
}
};
class teacher:public person
{public:
struct course
{
string cname[6];
};
struct date
{
int year;
int month;
int day;
};
course courses;
date tregister;
void read_2()
{
cout<<"Please input one course of teacher teaching(只能为字符,包括汉字,输6次。):"<<endl;
cin>>courses.cname[0]>>courses.cname[1]>>courses.cname[2]>>courses.cname[3]>>courses.cname[4]>>courses.cname[5];
cout<<"Please input register.year of teacher(只能为数字):"<<endl;
cin>>tregister.year;
cout<<"Please input register.month of teacher(只能为数字):"<<endl;
cin>>tregister.month;
cout<<"Please input register.day of teacher(只能为数字):"<<endl;
cin>>tregister.day;
}
void show_2()
{
cout<<"courses:"<<courses.cname[0]<<" "<<courses.cname[1]<<" "<<courses.cname[2]<<" "<<courses.cname[3]<<" "<<courses.cname[4]<<" "<<courses.cname[5]<<endl;
cout<<"tregister:"<<tregister.year<<"/"<<tregister.month<<"/"<<tregister.day<<endl;
};
};
int main()
{
student stud_y;
teacher stud_z;
stud_y.read();
stud_y.read_1();
stud_y.show();
stud_y.show_1();
stud_z.read();
stud_z.read_2();
stud_z.show();
stud_z.show_2();
return 0;
}
I. 求救编程高手(急求)-----C++编写学生评教管理系统 学生评教管理系统 要求:该系统主要处理学
这算的上是一个工程了,找外包吧。