把一个学生的信息(包括学号、姓名、性别、住址)放在一个结构体变量中,然后输出这个学生的信息。并通过指向结构体变量的指针变量输出结构体变量中成员的信息。两种方式输出。
时间: 2024-03-31 08:34:44 浏览: 111
使用JSON形式创建一个对象,该对象存储一个学生的信息,该对象包含学号、身份证、年龄、性别、所学专业等属性信息,同时该对象包含一个自我介绍的方法,用来输出该对象
好的,下面是代码示例:
```c++
#include <iostream>
#include <string>
using namespace std;
// 定义学生结构体
struct Student {
int id; // 学号
string name; // 姓名
char gender; // 性别
string address; // 住址
};
int main() {
// 定义学生结构体变量并初始化
Student stu = { 20210001, "张三", 'M', "北京市海淀区" };
// 输出学生信息
cout << "学号:" << stu.id << endl;
cout << "姓名:" << stu.name << endl;
cout << "性别:" << stu.gender << endl;
cout << "住址:" << stu.address << endl;
// 定义指向学生结构体变量的指针
Student* pStu = &stu;
// 通过指针输出学生信息
cout << "学号:" << pStu->id << endl;
cout << "姓名:" << pStu->name << endl;
cout << "性别:" << pStu->gender << endl;
cout << "住址:" << pStu->address << endl;
return 0;
}
```
以上程序定义了一个名为 `Student` 的结构体,其中包含了学生的学号、姓名、性别和住址。在 `main` 函数中,定义了一个名为 `stu` 的结构体变量并初始化,然后输出了该学生的信息。接着,定义了一个指向结构体变量的指针变量 `pStu`,并将其指向 `stu`。最后,通过指针变量 `pStu` 访问结构体变量 `stu` 中的成员,输出了学生的信息。
阅读全文