1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
| #include <stdio.h> #include <string.h> //职工的结构体 typedef struct Employee{ int id; //员工号 char name[100]; //姓名 int age; //年龄 double salary; //基本工资 }Employee; int main(){ Employee emps[10]; for (int i = 0; i < 10; i++) { printf("Enter id for employee: "); scanf("%d", &emps[i].id); printf("Enter name for employee %d: ", emps[i].id); scanf("%s", emps[i].name);
printf("Enter age for employee %d: ", emps[i].id); scanf("%d", &emps[i].age);
printf("Enter salary for employee %d: ", emps[i].id); scanf("%lf", &emps[i].salary); printf("employee %d enter over: \n\n",emps[i].id); } for (int i = 0; i < 10; i++) { printf("Employee %d:\n", i + 1); printf("ID: %d\n", emps[i].id); printf("Name: %s\n", emps[i].name); printf("Age: %d\n", emps[i].age); printf("Salary: %.2lf\n", emps[i].salary); printf("\n"); } // 输入要查找的名字 char searchName[100]; printf("Enter the name to search: "); scanf("%s", searchName);
// 在数组中查找名字 int found = 0; for (int i = 0; i < 10; i++) { if (strcmp(searchName, emps[i].name) == 0) { found = 1; printf("员工号为:%d,年龄为:%d\n", emps[i].id, emps[i].age); break; // 找到后直接跳出循环 } } if (found==0) { printf("not found!"); } return 0; }
|