请定义一个结构体Student,包含成员为学号id,姓名name。请写一个函数Display,其参数为某个Student变量,功能是打印这个变量中各个成员的值。请在main函数里面声明并初始化一个Student变量,然后演示Display函数的使用。
时间: 2024-02-09 22:11:14 浏览: 23
设计一个学生类Student(学生学号、姓名、数学、英语、计算机成绩;)
5星 · 资源好评率100%
好的,下面是代码实现:
```c++
#include<iostream>
using namespace std;
//定义结构体
struct Student{
int id; //学号
string name; //姓名
};
//函数声明
void Display(Student stu);
int main(){
//声明并初始化一个Student变量
Student stu = {10001, "张三"};
//演示Display函数的使用
Display(stu);
return 0;
}
//函数定义
void Display(Student stu){
cout<<"学号:"<<stu.id<<endl;
cout<<"姓名:"<<stu.name<<endl;
}
```
输出结果:
```
学号:10001
姓名:张三
```
这样就完成了题目要求。
阅读全文