求大神!c++编程题,题目:定义一个学生类,有自己的属性,完成将一个学生信息()包括姓名学号)进行

求大神!c++编程题,题目:定义一个学生类,有自己的属性,完成将一个学生信息()包括姓名学号)进行输入输出。并且输入一个姓名查找这个是否有这个这个人,如果有则输出该生信息,如果没有则输出不存在!

CStudent{private: char mName[20]; float mScore[4];public: float mAve; CStudent(char *strName,float *score); void calulateAve();}CStudent::CStudent(char *strName,float *score){strcpy(mName,strName);for(int i=0;i<4;i++) mScore[i]=score[i];}void CStudent::calulateAve(){int i;for(i=0;i<4;i++) mAve+=mScore[i];mAve/=4;}
温馨提示:内容为网友见解,仅供参考
无其他回答

用c++编写一个学生类。输出每个学生的姓名、学号、成绩
cout << "成绩:" << ends << score << endl;}int main(){ Student stu("小明", 19, 97); stu.display(); system("pause"); return 0;}

C++编写程序:定义Student类保存学生信息(包括学号、姓名和成绩),重载...
int id;int score;public:student(string n="XXX",int id=0,int s=0):name(n),id(id),score(s){} friend istream& operator>>(istream& in, student& s);friend ostream& operator<<(ostream& out, const student& s);};istream& operator>>(istream& in, student& s){ in>>s....

用c++编写一个程序,要求创建一个类,输入若干个学生的数据,包括学号,姓名...
int n){for (int i = 0; i < n; i++){cout << "输入第" << i + 1 << "个学生的学号:";cin >> s[i].num;cout << "输入第" << i + 1 << "个学生的姓名:";cin >> s[i].name;s[i]

定义一个描述学生基本情况的类,数据成员包括姓名,学号,数学,英语,物...
class student { private:string name;string id;int math_score;int english_score;int physics_score;int cpp_score public:void SetName(string n) { name = n;} void SetId(string i) {id = i;} void SetMathScore(int score) { math_score = score} void SetEnglishScore(int score)...

真心求c++编程,定义一个学生类Student,包括3个数据成员:学号id,姓名n...
double total; static int count;};\/\/ 类外对静态数据成员进行定义声明double Student::total = 0.0f;int Student::count= 0;void main(){ \/\/ 声明四个学生对象并初始化 Student s1(1001,"James", 86); Student s2(1001,"Kate", 67); Student s3(1001,"Lucy", 91); Student s4(...

c++类编程,设计一个学生类
fwrite(&data,sizeof(data),1,fp);printf("another?y\/n");ch=getch();if(ch=='n'||ch=='N')break;} fclose(fp);} void xianshi(){ float s;int n;if((fp=fopen("s_score.txt","rb+"))==NULL){ printf("Cannot reading this file.\\n");exit(0);} for(i=0;i<=1000;...

c++设计一个学生类Cstudent,该类包括学生学号、姓名以及数学、英语、c...
main(){p = stu;input(p);print(p);system("pause");}void input(struct student *p){int i = 0, j;for(p = stu; p < stu + 2; p++, i++){printf("请输入第%d个人的学号:", i + 1);scanf("%d",&p->num);printf("请输入第%d个人的姓名:", i + 1);scanf("%s"...

c++1. 编写一个学生类,数据成员:学号、姓名、英语课成绩、数学课成绩...
cout<<"Input the total of the students(输入学生人数):";cin>>n;for(int i=0;i<n;i++) \/\/数据输入 { cout<<"Input name:";cin>>stu[i].name;cout<<"Input number:";cin>>stu[i].numner;cout<<"Input yuwen:";cin>>stu[i].yuwen;cout<<"Input shuxue:";cin>>stu[i]....

c++编程题建立学生类,数据成员包括姓名、年龄、性别,成员函数包括
以下程序在DEV C++平台上运行通过:#include <iostream> \/\/控制台头文件#include <string.h> \/\/字符串操作头文件class Stu \/\/定义学生类 {private: \/\/私有成员关键字 char Name[16]; \/\/姓名 int Year; \/\/年龄 bool Sex; \/\/性别(true为男,false为女) public...

编写一个c++程序,输出你的个人信息,包括学号、姓名、籍贯,例如?
int main(){ long number;char name[50];int class_;cout << "请依次输入学号、姓名、班级(例子:000007 张三 3),以空格分隔:\\n";cin >> number >> name >> class_;cout << "姓名:" << name << endl << "学号:" << number << endl << "班级:" << class_ << endl;...

相似回答