用c编写,程序开始时,自动从文件读入信息到结构体数组,并提取每个公民的出生年月放入结构体中,同时进行身份证校验位是否正确,判断信息也放入结构体中。用户选择1时,显示校验位正确的公民信息;用户选择1时,显示校验位正确的公民信息;用户选择2时,显示校验位错误的公民信息,并统计人数。用户选择2时,显示校验位错误的公民信息,并统计人数。用户选择3时,将正确公民信息按出生日期排序并输出。 用户选择4时,在正确公民信息中查找和指定姓名同名的人数。若用户选择0,会退出程序,但在此之前,会自动将身份证号码正确的数据写入文件person_checked.txt中。补全主函数,#include <stdio.h> #include <string.h> #define N 100 struct birth { int year; int month; int day; }; struct person { char ID[19]; char name[20]; struct birth birthday; int flag;//校验位是否正确, 1代表正确,0代表错误 }; int read(struct person p[]); int checkID(char *ID); struct birth get_birth(char *ID); void get_all_person(struct person p[], int n); void display_person(struct person p[], int n, int flag); int birth_cmp(struct birth birth1, struct birth birth2); void birth_sort(struct person p[], int n); int search(struct person p[], int n, char *name); void save(struct person p[], int n); int prompt(void); int main(void) { struct person p[N]; int cmd, n; while (1) { cmd = prompt(); } return 0; }
时间: 2023-06-25 22:04:33 浏览: 109
#include <stdio.h>
#include <string.h>
#define N 100
struct birth {
int year;
int month;
int day;
};
struct person {
char ID[19];
char name[20];
struct birth birthday;
int flag;//校验位是否正确, 1代表正确,0代表错误
};
int read(struct person p[]);
int checkID(char *ID);
struct birth get_birth(char *ID);
void get_all_person(struct person p[], int n);
void display_person(struct person p[], int n, int flag);
int birth_cmp(struct birth birth1, struct birth birth2);
void birth_sort(struct person p[], int n);
int search(struct person p[], int n, char *name);
void save(struct person p[], int n);
int prompt(void);
int main(void) {
struct person p[N];
int cmd, n;
n = read(p); // 读入信息到结构体数组
while (1) {
cmd = prompt();
switch (cmd) {
case 0:
save(p, n); // 将身份证号码正确的数据写入文件person_checked.txt中
return 0;
case 1:
display_person(p, n, 1); // 显示校验位正确的公民信息
break;
case 2:
display_person(p, n, 0); // 显示校验位错误的公民信息,并统计人数
break;
case 3:
birth_sort(p, n); // 将正确公民信息按出生日期排序并输出
break;
case 4:
char name[20];
printf("请输入姓名:");
scanf("%s", name);
int count = search(p, n, name); // 在正确公民信息中查找和指定姓名同名的人数
printf("与%s同名的人数为:%d\n", name, count);
break;
default:
printf("无效的选项!\n");
break;
}
}
}
// 从文件读入信息到结构体数组,并提取每个公民的出生年月放入结构体中,同时进行身份证校验位是否正确,判断信息也放入结构体中
int read(struct person p[]) {
FILE *fp;
fp = fopen("person.txt", "r");
if (fp == NULL) {
printf("打开文件失败!\n");
return 0;
}
int n = 0;
while (!feof(fp) && n < N) {
fscanf(fp, "%s%s", p[n].ID, p[n].name);
p[n].birthday = get_birth(p[n].ID);
p[n].flag = checkID(p[n].ID);
n++;
}
fclose(fp);
return n;
}
// 身份证校验位验证
int checkID(char *ID) {
int weight[18] = {7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2}; // 加权因子
char check_code[11] = "10X98765432"; // 校验码
int sum = 0;
for (int i = 0; i < 17; i++) {
sum += (ID[i] - '0') * weight[i];
}
int mod = sum % 11;
char code = check_code[mod];
if (ID[17] == code) {
return 1; // 校验位正确
} else {
return 0; // 校验位错误
}
}
// 根据身份证号码提取出生年月
struct birth get_birth(char *ID) {
struct birth birthday;
birthday.year = (ID[6] - '0') * 1000 + (ID[7] - '0') * 100 + (ID[8] - '0') * 10 + (ID[9] - '0');
birthday.month = (ID[10] - '0') * 10 + (ID[11] - '0');
birthday.day = (ID[12] - '0') * 10 + (ID[13] - '0');
return birthday;
}
// 获取所有公民信息
void get_all_person(struct person p[], int n) {
printf("所有公民信息如下:\n");
for (int i = 0; i < n; i++) {
printf("%s\t%s\t%d-%02d-%02d\t%s\n", p[i].ID, p[i].name, p[i].birthday.year, p[i].birthday.month, p[i].birthday.day, p[i].flag ? "校验位正确" : "校验位错误");
}
}
// 显示校验位正确或错误的公民信息,并统计人数
void display_person(struct person p[], int n, int flag) {
printf("校验位%s的公民信息如下:\n", flag ? "正确" : "错误");
int count = 0;
for (int i = 0; i < n; i++) {
if (p[i].flag == flag) {
printf("%s\t%s\t%d-%02d-%02d\n", p[i].ID, p[i].name, p[i].birthday.year, p[i].birthday.month, p[i].birthday.day);
count++;
}
}
printf("共%d人\n", count);
}
// 比较两个出生日期的大小,返回值小于0表示birth1早于birth2,等于0表示相等,大于0表示birth1晚于birth2
int birth_cmp(struct birth birth1, struct birth birth2) {
if (birth1.year != birth2.year) {
return birth1.year - birth2.year;
} else if (birth1.month != birth2.month) {
return birth1.month - birth2.month;
} else {
return birth1.day - birth2.day;
}
}
// 将正确公民信息按出生日期排序并输出
void birth_sort(struct person p[], int n) {
// 冒泡排序
for (int i = 0; i < n - 1; i++) {
for (int j = 0; j < n - i - 1; j++) {
if (birth_cmp(p[j].birthday, p[j + 1].birthday) > 0) {
struct person tmp = p[j];
p[j] = p[j + 1];
p[j + 1] = tmp;
}
}
}
printf("按出生日期排序后的公民信息如下:\n");
for (int i = 0; i < n; i++) {
if (p[i].flag == 1) {
printf("%s\t%s\t%d-%02d-%02d\n", p[i].ID, p[i].name, p[i].birthday.year, p[i].birthday.month, p[i].birthday.day);
}
}
}
// 在正确公民信息中查找和指定姓名同名的人数
int search(struct person p[], int n, char *name) {
int count = 0;
for (int i = 0; i < n; i++) {
if (p[i].flag == 1 && strcmp(p[i].name, name) == 0) {
count++;
}
}
return count;
}
// 将身份证号码正确的数据写入文件person_checked.txt中
void save(struct person p[], int n) {
FILE *fp;
fp = fopen("person_checked.txt", "w");
if (fp == NULL) {
printf("打开文件失败!\n");
return;
}
for (int i = 0; i < n; i++) {
if (p[i].flag == 1) {
fprintf(fp, "%s\t%s\t%d-%02d-%02d\n", p[i].ID, p[i].name, p[i].birthday.year, p[i].birthday.month, p[i].birthday.day);
}
}
fclose(fp);
}
// 显示菜单并获取用户输入的选项
int prompt(void) {
printf("\n请选择要执行的操作:\n");
printf("0. 退出程序\n");
printf("1. 显示校验位正确的公民信息\n");
printf("2. 显示校验位错误的公民信息,并统计人数\n");
printf("3. 将正确公民信息按出生日期排序并输出\n");
printf("4. 在正确公民信息中查找和指定姓名同名的人数\n");
printf("请输入选项:");
int cmd;
scanf("%d", &cmd);
return cmd;
}
阅读全文