标签:
杂谈 |
分类: C源码 |
#include<string.h>
#include<stdio.h>
#define N 10000
typedef struct wage
{
float wage1;
float Bonus;
float tax;
float S_fee;
float D_fee;
float T_fee;
float Q_fee;
float S_wage;
}WAGE;
typedef struct worker
{
char ID[10];
char ID_Wage[10];
char depart[10];