(1) 定义一个score类,其中包括私有数据成员和公有成员函数,即 num 学号 Math 高等数学成绩 English 英语

如题所述

c++语言
//=============================score类
class score //定义类类型score
{
private:
float num,math,english;
//私有成员 num 学号 Math 高等数学成绩 English 英语

public:
Score() { };//(默认构造函数)
Score(float,float,float) { };//自定义构造函数 (未写拷贝构造,你的没指针缺省的就可以)
//公有构造函数
};
//==========================================类结束
inline public Score(float num2,float math2,ifloat english2)
{
num = num2;
math = math2;
english = english2;
}
//自定义构造函数的函数体
温馨提示:内容为网友见解,仅供参考
第1个回答  2011-03-04
需要用什么程序做?如果用java,如下程序:
class Score
{
private int num,math,english;

public Score() {}

public Score(int num2,int math2,int english2)
{
num = num2;
math = math2;
english = english2;
}
}
第2个回答  2019-02-05
这个建议楼主自己写可以定义结构体或者直接使用vector来配合实现

(1) 定义一个score类,其中包括私有数据成员和公有成员函数,即 num...
class score \/\/定义类类型score { private:float num,math,english;\/\/私有成员 num 学号 Math 高等数学成绩 English 英语 public:Score() { };\/\/(默认构造函数)Score(float,float,float) { };\/\/自定义构造函数 (未写拷贝构造,你的没指针缺省的就可以)\/\/公有构造函数 };...

1) 定义一个score类,其中包括私有数据成员和公有成员函数,即 num...
class score {public:void set_score();void show_score();private:int num;int Math;int English;};int main(){ score s1;s1.set_score();s1.show_score();return 0;} void score::set_score(){ cout<<"请输入学号"<<endl;cin>>num;cout<<"请输入数学成绩"<<endl;cin>>Math;...

(1) 定义一个Score类,其中包括私有数据成员和公有成员函数,即
\/\/Score.h#ifndef SCORE_H#define SCORE_H#include <iostream>using std::cout;using std::endl;using std::cin;class Score{ public: Score(); ~Score(); void Inscore(int num, double m, double e, double p); void Showscore(); private: int mNum; double...

定义一个成绩(score)类,包含私有数据成员数学课成绩(maths)、公有成员...
score();~score();private:int maths;public:void setscore(int _maths){ maths=_maths;} void printscore(){ cout<<maths<<endl;} };int main(){ score *stu1=new score();score *stu2=new score();stu1->setscore(78);stu2->setscore(91);stu1->printscore(78);stu2->printsco...

《面向对象程序设计》高手进~~~!!
1、定义一个类score,它含有私有数据成员english_score (英语分数),共有成员函数setsmre( )和grintscore ( ),其中setscore ( )用来设置english_score的值,grintscore ( )用来输出english_score的值,在主程序中定义类score的两个对象stu 1和stu 2,其英语成绩分别为85.5和93.5,输出这两个...

定义一个分数类(Score)类。
score ascore;public:student():ascore(){strcpy(num,"0000");strcpy(name,"noname");} student(int a,int b,int c,char *nu,char *na):ascore(a,b,c){strcpy(num,nu);strcpy(name,na);} int sum(){return ascore.sum();} void print(){cout<<"姓名为:"<<name<<"; 学号为...

定义一个学生类,其中有3个私有数据成员学号、姓名、成绩,以及若干成员...
包含友元函数的:include <iostream> include <string> using namespace std;class Student {public:Student(int x,string y,int z):number(x),name(y),score(z){} void display();friend void contrast(Student *a,Student *b,Student *c);private:int number;string name;int score;};void ...

...学生类中有3个私有数据成员:num(学号)、name(姓名)、age(年龄);2...
int num;char name[30];int age;public:student(int nu,const char * na,int ag ){ num=nu;strcpy(name,na);age=ag;} void display(student * *ss,int total ){ student * sp=ss[0];int i=0;while(i<total){ cout<<"("<<i+1<<") "<<sp->num<<" "<<sp->name<<" ...

...数据成员学号number,姓名name,成员函数setnum()和
那么可以使用eclipse\/vs等IDE里面的 自动生成getter.setter方法,不过首先自己得写好总体结构如:class Student { private:int number;string name;};然后就可以使用IDE自动生成了,上面是以c++为例子写的,如果是java,去掉private:那一行就可以了,并且注意变量的类型不要写错了 ...

定义一个描述学生基本情况的类,数据成员包括姓名,学号,数学,英语,物...
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) { english_score = score} void Set...

相似回答