新手求助
定义一个描述学生基本信息的类,数据类型包括姓名,学号,英语,语文,数学成绩,成员函数包括输出数据,姓名,学号,三门课成绩,要用构造函数。不知道哪儿错了,求大神指教。#include<iostream.h>
class Cclass
{
public:
char name;
int id;
int CC;
int eng;
int math;
intcr str)
{
str=name;
cout<<str<<" "<< id<<" "<<CC<<" "<<eng<<" "<<math<<endl;
}
};
int main()
{
Cclass student={"小红",123456,12,23,45};
print("小红");
return 0;
}
你需要一个构造函数 对成员进行初始化
而且里面的打印函数写的也不对
main函数中的对象定义也有问题
建议好好学习类的基础
写个简单的上述可行版本如下:
#include <iostream>
#include <string>
using namespace std;
class Cclass
{
public:
Cclass(string, int, int, int, int);
void show();
private:
string name;
int id;
int CC;
int eng;
int math;
};
Cclass::Cclass(string n, int Id, int ccount, int english, int m)
{
name = n;
id = Id;
CC = ccount;
eng = english;
math = m;
}
void Cclass::show()
{
cout<<name<<" "<< id<<" "<<CC<<" "<<eng<<" "<<math<<endl;
}
int main()
{
Cclass student("小红",123456,12,23,45);
student.show();
getchar();
return 0;
} 谢谢大佬,最近才学,第一次作业就是这个!
页:
[1]