某公司有以下5个员工,每个员工的信息包括序号、姓名、性别、出生日期和工资。从键盘输入5个职工信息,并且将职工按照工资从低到高排成升序,最后输出。(提示∶使用结构体数组存储员工信息)
图片:
![Alt]
代码
#include<iostream>
using namespace std;
const int size = 5;
struct date
{
int year;
int month;
int day;
};
struct employee
{
char num[2];
char name[8];
char sex[2];
struct date birth;
float salary;
};
void arrange(