有三个职工的信息,包括工号,姓名,性别,工资,放在结构体数组中,输出职工全部信息
时间: 2023-12-03 21:05:26 浏览: 135
好的,以下是输出职工全部信息的代码示例:
```c
#include <stdio.h>
// 定义职工结构体
struct Employee {
int id; // 工号
char name[20]; // 姓名
char sex; // 性别
float salary; // 工资
};
int main() {
// 初始化三个职工信息
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\n", employees[i].id);
printf("姓名:%s\n", employees[i].name);
printf("性别:%c\n", employees[i].sex);
printf("工资:%.2f\n", employees[i].salary);
}
return 0;
}
```
输出结果如下:
```
工号:1001
姓名:张三
性别:M
工资:5000.00
工号:1002
姓名:李四
性别:F
工资:6000.00
工号:1003
姓名:王五
性别:M
工资:7000.00
```
阅读全文