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++編寫學生評教管理系統 學生評教管理系統 要求:該系統主要處理學
這算的上是一個工程了,找外包吧。