当前位置:首页 » 课程设计 » 英文成绩单网站设计课程设计

英文成绩单网站设计课程设计

发布时间: 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