溫馨提示×

C語言如何實現(xiàn)簡單職工信息管理系統(tǒng)

小億
119
2023-07-31 23:32:06
欄目: 編程語言

要實現(xiàn)一個簡單的職工信息管理系統(tǒng),你可以使用C語言來編寫以下功能:

  1. 定義一個職工結(jié)構(gòu)體:首先,你需要定義一個職工結(jié)構(gòu)體,用于存儲職工的信息。結(jié)構(gòu)體可以包含職工的姓名、工號、職位、部門等信息。
struct Employee {
char name[50];
int id;
char position[50];
char department[50];
};
  1. 添加職工:編寫一個函數(shù)用于添加新的職工信息。該函數(shù)會從用戶輸入中獲取職工的姓名、工號、職位和部門等信息,并將其保存到一個職工結(jié)構(gòu)體數(shù)組中。
void addEmployee(struct Employee *employees, int *count) {
printf("Enter employee name: ");
scanf("%s", employees[*count].name);
printf("Enter employee ID: ");
scanf("%d", &employees[*count].id);
printf("Enter employee position: ");
scanf("%s", employees[*count].position);
printf("Enter employee department: ");
scanf("%s", employees[*count].department);
(*count)++;
}
  1. 查找職工:編寫一個函數(shù)用于按照工號查找職工信息。該函數(shù)會從用戶輸入中獲取要查找的工號,并在職工結(jié)構(gòu)體數(shù)組中查找對應(yīng)的職工信息,并將其打印出來。
void findEmployee(struct Employee *employees, int count) {
int id;
printf("Enter employee ID to search: ");
scanf("%d", &id);
for (int i = 0; i < count; i++) {
if (employees[i].id == id) {
printf("Employee Name: %s\n", employees[i].name);
printf("Employee Position: %s\n", employees[i].position);
printf("Employee Department: %s\n", employees[i].department);
return;
}
}
printf("Employee not found.\n");
}
  1. 顯示所有職工:編寫一個函數(shù)用于顯示所有職工的信息。該函數(shù)會遍歷職工結(jié)構(gòu)體數(shù)組,并將每個職工的信息打印出來。
void displayEmployees(struct Employee *employees, int count) {
for (int i = 0; i < count; i++) {
printf("Employee Name: %s\n", employees[i].name);
printf("Employee ID: %d\n", employees[i].id);
printf("Employee Position: %s\n", employees[i].position);
printf("Employee Department: %s\n", employees[i].department);
printf("\n");
}
}

以上是一個簡單的職工信息管理系統(tǒng)的實現(xiàn)。你可以在主函數(shù)中調(diào)用這些函數(shù)來實現(xiàn)不同的操作,例如添加職工、查找職工和顯示所有職工等。

0