當前位置:首頁 » 課程設計 » 英文成績單網站設計課程設計

英文成績單網站設計課程設計

發布時間: 2021-03-10 02:40:31

⑴ 網頁製作與網站設計課程設計報告

選修亂做吧 給你寫這個很麻煩的

⑵ 課程設計的英文是Curriculum Design還是Course Design

我的理解是:
Curriculum Design 是指多種課程的設計,類似於課程表,我認為可以和 Lesson plan相通
Course Design 可以指針對一門專業學科的課程設制

其實一般情況下兩者意思大致一樣的。

⑶ 課程設計題目:學生成績管理系統

附件:(程序代碼)

#include<iostream>
#include<fstream> //輸入輸出文件
#include<string>
#include<iomanip> //輸出格式控制
using namespace std;
char press;int choose;int n;
class Student
{public:
int num;//學號
string name;//姓名
int bj;// 班級
char sex;//性別
float Math;//高數
float English;//英語
float Cjj;//C++
float sum;//總分
float average;//平均分
};
Student stud[100];
//----------------讀取資料------------------
void read()
{char filename[20];
cout<<"從文件中讀取信息!"<<endl;
cout<<"請輸入文件名:"<<endl;
cin>>filename;
ifstream infile(filename,ios::in|ios::out); 磁碟文件
if(!infile)
{cerr<<"open error!"<<endl; exit(1); }//輸出出錯信
do {int i=0;
infile>>stud[i].num>>stud[i].name>>stud[i].sex>>stud[i].bj;
infile>>stud[i].Math>>stud[i].English>>stud[i].Cjj;
cout<<"學生的學號:"<<stud[i].num<<" "
<<"姓名:"<<stud[i].name<<" "
<<"性別(男m/女w):"<<stud[i].sex<<" "
<<"班級(數字如:03):"<<stud[i].bj<<" "
<<"高數成績:"<<stud[i].Math<<" "
<<"大學英語成績:"<<stud[i].English<<" "
<<"C++成績:"<<stud[i].Cjj<<endl; i++;}
while(!infile.eof());
infile.close();
cout<<"讀取成功!"<<endl;}
//----------------保存資料------------------
void save()
{int i;
char filename[20];
for(i=0;i<n;i++)
{cout<<"學生的學號:"<<stud[i].num<<" "
<<"姓名:"<<stud[i].name<<" "
<<"性別:"<<stud[i].sex<<" "
<<"班級:"<<stud[i].bj<<" "
<<"高數成績:"<<stud[i].Math<<" "
<<"大學英語成績:"<<stud[i].English<<" "
<<"C++成績:"<<stud[i].Cjj<<endl;}
cout<<"將記錄保存在文件夾!"<<endl;
cout<<"請輸入文件名:";
cin>>filename;
ofstream outfile(filename);
if(!outfile){cerr<<"open error!"<<endl;}//輸出出錯信
for(i=0;i<n;i++)//向保存文件保存學生的信息
{outfile<<" "<<stud[i].num<<" "<<stud[i].name<<" "<<stud[i].sex<<" "<<stud[i].bj<<" ";
outfile<<stud[i].Math<<" "<<stud[i].English<<" "<<stud[i].Cjj; }
outfile.close();cout<<"保存成功!"<<endl;}

void SR()
{cout<<"請根據你的需要輸入學生的個數[(人數)>=2]:";
cin>>n;for(int a=0;a<n;a++)
{cout<<"請輸入第"<<a+1<<"個學生資料:"<<endl;
cout<<"學號:"<<' ';cin>>stud[a].num;
cout<<"姓名:"<<' ';cin>>stud[a].name;
cout<<"性別(男m/女w):"<<' ';cin>>stud[a].sex;
cout<<"班級(數字如:03):"<<' ';cin>>stud[a].bj;
cout<<"高數成績:"<<' ';cin>>stud[a].Math;
cout<<"大學英語成績:"<<' ';cin>>stud[a].English;
cout<<"C++成績:"<<' ';cin>>stud[a].Cjj;
stud[a].sum=stud[a].Math+stud[a].English+stud[a].Cjj;
stud[a].average=(stud[a].Math+stud[a].English+stud[a].Cjj)/3;}
cout<<"輸入成功,學生資料是否保存?(y/n)"<<endl;cin>>press;
switch(press)
{case 'y' : save();break;default: cout<<"不保存!";break;}}
//----------------刪除資料------------------
void SC()
{do{string SC_name;
cout<<"請輸入你要刪除的學生名字:"<<endl;int i=0;cin>>SC_name;
while(stud[i].name!=SC_name&&i<n) i++; //查找判斷
if(stud[i].name==SC_name)
{for(int j=i;j<n-1;j++)
{stud[i].num=stud[i+1].num;
stud[i].name=stud[i+1].name;
stud[i].sex=stud[i+1].sex;
stud[i].bj=um<<" "<<stud[k].name<<" "<<stud[k].sex<<" "<<stud[k].bj<<" "<<stud[k].average<<endl;cout<<endl;}
//----i].
這樣可以么?

⑷ 大學英文成績單翻譯

the school report card of college English

⑸ 課程設計做網頁

不會。。。。。。。。。。。。。。。。真的不會

⑹ 學生成績管理系統課程設計

你好,我曾用c++學生成績管理系統的程序,希望能對你有所幫助。
#include <string.h>
#include <iostream.h>
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
/*------------------------------------定義類部分------------------------------------------------*/
class Node
{
char name[10];
int score;
class Node *next;
public:
Node* CreateNode(int n);
void PrinfListNode(Node *h);
void InsertList(Node *h,int i,char name[],int e,int *n);
void DeleteList(Node *h,int i,int *n);
Node* operator +=(Node *p);
Node *Unique(Node *p,int *n);
};
void DisplayNote(void);

/*--------------------建立單鏈表的成員函數,單鏈表節點的個數不確定--------------------------------*/
Node *Node::CreateNode(int n)
{
Node *head;
Node *pre,*p;
int i;
head=(Node*)malloc(sizeof(Node)); //用malloc動態申請內存,個數作為函數的輸入參數
head->next=NULL;
pre=head;
for (i=1;i<=n;i++)
{
printf("請輸入學生姓名:",i);
p=(Node*)malloc(sizeof(Node));
scanf("%s",p->name);
printf("請輸入此學生的分數:",i);
scanf("%d",&p->score);
pre->next=p;
pre=p;
}
p->next=NULL;
return head;
}
/*---------------------------------輸出鏈表函數實現部分------------------------------------------*/
void Node::PrinfListNode(Node *h)
{
Node *p;
p=h->next;
while(p)
{
printf("name:%s\tscore:%d",p->name,p->score);
p=p->next;
printf("\n");
}
}
/*----------------------------實現單鏈表的插入操作的成員函數--------------------------------------*/
void Node::InsertList(Node *h,int i,char name[],int e,int *n)
{
Node *p,*q;
int j;
if (i<1||i>(*n)+1)
{
printf("出錯啦!請重試!.\n");
}
else
{
j=0;p=h;
while(j<i-1)
{
p=p->next;
j++;
}
q=(Node *)malloc(sizeof(Node));
strcpy(q->name,name);
q->score=e;
q->next=p->next;
p->next=q;
(*n)++;
}
}
/*-----------------------------實現單鏈表的刪除操作的成員函數-------------------------------------*/
void Node::DeleteList(Node *h,int i,int *n)
{
Node *p,*q;
int j;
char name[10];
int score;
if (i<1||i>(*n))
{
printf("出錯啦!請重試!.\n");
}
else
{
j=0;p=h;
while(j<i-1)
{
p=p->next;
j++;
}
q=p->next;
p->next=q->next;
strcpy(name,q->name);
score=q->score;
free(q);
(*n)--;
}
}
/*--------------------------重載運算符「+=」實現兩個鏈表對象合並功能------------------------------*/
Node *Node::operator +=(Node *p)
{
Node *q=this;
while(q->next!=NULL) //把第一個鏈表最後的next指向第二個的頭
{
q=q->next;
}
q->next=p->next;
return this;
}
/*----------------編寫Unique()成員函數,實現剔除鏈表中重復元素,使所有節點值唯-----------------*/
Node *Node::Unique(Node *p,int *n)
{ Node *q=this,*k,*m;
int i;
if((*n)<=1) //用循環,拿一個和每一個去比較,一樣的刪除使用已經寫好的刪除函數
cout<<"ERROR!"<<endl;
else
{
for(i=1;i<(*n);q=q->next)
{
k=q;
p=q->next;
while(p!=NULL)
{
if(strcmp(q->name,p->name)==0)
{
m=p;
p=p->next;
k->next=m->next;
free(m);
(*n)--;
}
else{
k=p;
p=p->next;
}

}
}
}
return this;
}
/*--------------------------------編寫主函數測試上述功能---------------------------------------*/
int main()
{
Node *h,*k;
int i=1,n,score;
char name[10];
int *m=0;
while(i)
{
DisplayNote();
scanf("%d",&i);
switch(i)
{
case 1:
printf("請輸入表中成員的個數:\n");
scanf("%d",&n);
h=h->CreateNode(n);
printf("表中成員為:\n");
h->PrinfListNode(h);
break;
case 2:
printf("請寫出成員的位置:");
scanf("%d",&i);
printf("請輸入學生姓名:");
scanf("%s",&name);
printf("請輸入學生分數:");
scanf("%d",&score);
h->InsertList(h,i,name,score,&n);
printf("表中成員為:\n");
h->PrinfListNode(h);
break;
case 3:
printf("請寫出成員的位置:");
scanf("%d",&i);
h->DeleteList(h,i,&n);
cout<<"表中成員為:\n";
h->PrinfListNode(h);
break;
case 4:
printf("表中成員為:\n");
h->PrinfListNode(h);
break;
case 5:
printf("請輸入另一個表中成員的個數:\n");
scanf("%d",&n);
k=k->CreateNode(n);
h=h->operator +=(k);
printf("兩個鏈表相加之後的鏈表是:\n");
h->PrinfListNode(h);
break;
case 6:
h=h->Unique(h,&n);
printf("剔除重復元素後的新鏈表是:\n");
h->PrinfListNode(h);
break;
case 0:
return 0;
break;
default:
printf("出錯啦!請重試!");
}
}
return 0;
}
void DisplayNote(void)
{
printf("1--建立新的鏈表\n");
printf("2--添加元素\n");
printf("3--刪除元素\n");
printf("4--輸出當前鏈表中的內容\n");
printf("5--兩個鏈表對象合並\n");
printf("6--剔除鏈表中重復元素\n");
printf("0--退出\n");
}

⑺ 英文成績單翻譯!高分求高手……

看看這個行不行, 好在和我學的差不多, 我是學過控的, 前面的很多課程都學過, 就是專業課不一樣.

University Information Technology Foundation 大學信息技術基礎
University english 1 大學英語1
Ideological Moral Culture and Law Foundation 思想道德修養與法律基礎
P.E I 體育Ⅰ
Situation and policies I 形勢政策Ⅰ
Military skills training 軍事技能訓練
Advanced Mathematics A 高等數學A(上)
Mechanical Drawing I 機械制圖Ⅰ
Linear algebra B 線性代數B
Project Introction 專業導論

University english 2 大學英語2
University Chinese 大學語文
Military theory 軍事理論
P.E II 體育Ⅱ
Situation and policies II 形勢政策Ⅱ
Outline of modern Chinese history 中國近現代史綱要
University Physics C 大學物理C
University Physics Experiment 大學物理實驗ⅠB
Advanced Mathematics A II 高等數學AⅡ
Theoretical Mechanics 理論力學
Mechanical Drawing II B 機械制圖ⅡB

University english 3 大學英語3
Marxist Philosophy Principle 馬克思主義基本原理
P.E III 體育Ⅲ
Situation and policies III 形勢政策Ⅲ
social practice I 社會實踐Ⅰ
The primary Japanese 初級日語(上)
ambulance aid 救護學
complex variable function and Integral transform 復變函數與積分變換
Statistics and Probability Theory 概率統計A
Metal Technology 金屬工藝學
Electrical and electronic technology I 電工與電子技術Ⅰ

University english 4 大學英語4
Outline of Mao Zedong Thought , Deng Xiaoping Theory and "three represents theory" 毛澤東思想、鄧小平理論與"三個代表"重要思想概論
P.E IV 體育Ⅳ
literature information retrieval and application 文獻信息檢索與利用
Project design of Mechanical Principles 機械原理課程設計
Metalworking Practice 金工實習
Lawn Science and Management 草坪科學與管理
Engineering Materials 工程材料
Interchangeability and Technical Measurement 互換性與技術測量
Mechanical principles 機械原理
Electrical and electronic technology II 電子電工技術Ⅱ
Engineering Hydromechanics 工程流體力學
foundation of engineering thermodynamics 熱工基礎

Situation and policies V 形勢與政策Ⅴ
The engines structure integrated internship 發動機構造綜合實習
project design of Mechanical Design 機械設計課程設計
Mechanical Design 機械設計
Automobile Electric Appliances and electronic equipment 汽車電器與電子設備
Automobile Construction I 汽車構造Ⅰ
Automobile Construction II 汽車構造Ⅱ
Automobile CAD/CAM 汽車CAD\CAM
Automobile ergonomics 汽車人機工程學
Vehicle control theory 車輛控制理論
Fundamentals of Single Chip Micyoco & Applications 單片機原理及應用
automobile network technology 汽車網路技術

Situation and policies VI 形勢與政策Ⅵ
course thesis 課程論文
Automotive engine electronic control technology internship 汽車發動機電子控制技術實習
Car driving practice 汽車駕駛實習
automobile theory integrated design 汽車理論綜合設計
英語經典名著導讀
Principles of automobile engine 汽車發動機原理
automobile theory 汽車理論
automobile test 汽車試驗學
Manufacturing Technology of Automobile 汽車製造工藝學
Automobile CAE Technology 車輛CAE技術
automobile body structure and design 汽車車身結構與設計
automobile electronic control technology 汽車電子控制技術
automobile engine electronic control technology 汽車發動機電子控制技術
Automobile Simulation and application 汽車模擬運用技術
Automobile Service Engineering 汽車服務工程
automobile Environmental Engineering 汽車環境工程
vehicle detecting test technology 汽車檢測技術
automobile air conditioning 汽車空調

⑻ 求幾個大學css網站設計的課程設計

計算機科學與技術
概率論與數理統計
H55010002
2
36
36
0

2*

線性代數
H55010021
2
32
32
0

2*

計算機科學導論
H61030001
3.5
64
48
16

4*

高級語言程序設計
H61030002
3.5
72
48
24

4*

匯編語言程序設計
H61030005
3.5
72
48
24

4*

數據結構
H61030006
4.5
88
64
24

5*

計算機組成
H61030007
4
64
64
0

4*

資料庫系統
H61030008
4.5
88
64
24

5*

操作系統
H61030009
4.5
88
64
24

5*

微機原理與介面技術
H61030010
3
48
48
0

3*

編譯原理
H61030011
3.5
72
48
24

4*

軟體工程
H61030012
3
48
48
0

3*

計算機組成實驗
H61030101
1
32
0
32

2*

微機原理與介面實驗
H61030102
1
32
0
32

2*

數字邏輯
H61060301
3.5
64
48
16

4*

離散數學
H61030003
4
64
64
0

4*

工程制圖(Ⅱ)
H59010002
4
64
64
0

4*

工程訓練(Ⅱ)
H59030002
2
0
0
0

2周
0*

生產實習

熱點內容
幼師專業怎麼樣 發布:2021-03-16 21:42:13 瀏覽:24
音樂小毛驢故事 發布:2021-03-16 21:40:57 瀏覽:196
昂立中學生教育閘北 發布:2021-03-16 21:40:47 瀏覽:568
建築業一建報考條件 發布:2021-03-16 21:39:53 瀏覽:666
2017年教師資格注冊結果 發布:2021-03-16 21:39:49 瀏覽:642
中國教師資格證查分 發布:2021-03-16 21:39:41 瀏覽:133
踵什麼成語有哪些 發布:2021-03-16 21:38:20 瀏覽:962
東營幼師專業學校 發布:2021-03-16 21:35:26 瀏覽:467
機械電子研究生課程 發布:2021-03-16 21:33:36 瀏覽:875
杭州朝日教育培訓中心怎麼樣 發布:2021-03-16 21:33:28 瀏覽:238