有3个职工的信息(包括工号、姓名、性别、工资),放在结构体数组中,要求输出全部职工的信息
时间: 2023-12-19 19:15:08 浏览: 67
员工的一些基本信息的输入和输出
好的,这是一个简单的结构体数组遍历问题。以下是一个示例代码:
```c
#include <stdio.h>
struct Employee {
int empNo;
char name[20];
char gender;
float salary;
};
int main() {
// 定义结构体数组
struct Employee employees[3] = {
{1001, "Tom", 'M', 5000.0},
{1002, "Mary", 'F', 6000.0},
{1003, "John", 'M', 5500.0}
};
// 遍历结构体数组并输出
for (int i = 0; i < 3; i++) {
printf("工号: %d, 姓名: %s, 性别: %c, 工资: %.2f\n",
employees[i].empNo, employees[i].name, employees[i].gender, employees[i].salary);
}
return 0;
}
```
输出结果:
```
工号: 1001, 姓名: Tom, 性别: M, 工资: 5000.00
工号: 1002, 姓名: Mary, 性别: F, 工资: 6000.00
工号: 1003, 姓名: John, 性别: M, 工资: 5500.00
```
阅读全文