有3个职工的信息(包括工号、姓名、性别、工资),放在结构体数组中,要求输出全部职工的信息。
时间: 2023-12-19 11:15:22 浏览: 75
员工的一些基本信息的输入和输出
好的,这个问题很简单。以下是一个示例代码,其中定义了一个名为 `Employee` 的结构体,包含了工号、姓名、性别、工资等信息,然后定义了一个结构体数组 `employees`,将三个职工的信息存储在其中,最后通过遍历结构体数组输出所有职工的信息。
```c
#include <stdio.h>
// 定义结构体 Employee
struct Employee {
int id;
char name[20];
char gender;
float salary;
};
int main() {
// 定义结构体数组 employees
struct Employee employees[3] = {
{1001, "张三", 'M', 5000.0},
{1002, "李四", 'F', 6000.0},
{1003, "王五", 'M', 7000.0}
};
// 输出所有职工的信息
for (int i = 0; i < 3; i++) {
printf("工号:%d,姓名:%s,性别:%c,工资:%.2f\n", employees[i].id, employees[i].name, employees[i].gender, employees[i].salary);
}
return 0;
}
```
输出结果如下:
```
工号:1001,姓名:张三,性别:M,工资:5000.00
工号:1002,姓名:李四,性别:F,工资:6000.00
工号:1003,姓名:王五,性别:M,工资:7000.00
```
阅读全文