编程一个程序基本要求: 定义学生(student)类,其中至少包括姓名、性别、学号、班级和联系电话。用include代码实现
时间: 2024-02-01 18:03:10 浏览: 79
好的,以下是一个基本的C++程序,定义了一个名为`Student`的类,包含姓名、性别、学号、班级和联系电话等信息:
```c++
#include <iostream>
#include <string>
using namespace std;
class Student {
public:
string name;
string gender;
string id;
string cls;
string phone;
};
int main() {
// 创建一个学生对象
Student stu;
// 设置学生信息
stu.name = "张三";
stu.gender = "男";
stu.id = "20180101";
stu.cls = "计算机科学与技术1班";
stu.phone = "13888888888";
// 输出学生信息
cout << "姓名:" << stu.name << endl;
cout << "性别:" << stu.gender << endl;
cout << "学号:" << stu.id << endl;
cout << "班级:" << stu.cls << endl;
cout << "联系电话:" << stu.phone << endl;
return 0;
}
```
在上面的程序中,我们首先定义了一个名为`Student`的类,其中包含了学生的姓名、性别、学号、班级和联系电话等信息,这些信息都是`string`类型的。
接着,在`main`函数中,我们创建了一个`Student`类型的对象`stu`,并设置了它的各项信息。最后,我们通过`cout`语句输出了这个学生的信息。
注意,为了使用`string`类型,我们在程序开头使用了`#include <string>`语句。
阅读全文