输入n个朋友的信息,包括姓名、生日、电话号码,本题要求编写程序,按照年龄从大到小的顺序依次输出通讯录。题目保证所有人的生日均不相同。 C语言
时间: 2024-03-09 15:51:44 浏览: 42
以下是一个示例代码,可以实现您的要求:
```c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct Friend {
char name[20];
char birthday[11];
char phone[12];
int age;
};
int compare(const void *a, const void *b) {
return (*(struct Friend*)b).age - (*(struct Friend*)a).age;
}
int main() {
int n;
scanf("%d", &n);
struct Friend friends[n];
for (int i = 0; i < n; i++) {
scanf("%s %s %s", friends[i].name, friends[i].birthday, friends[i].phone);
int year = atoi(friends[i].birthday);
int month = atoi(friends[i].birthday + 5);
int day = atoi(friends[i].birthday + 8);
friends[i].age = 2021 - year - (month > 8 || (month == 8 && day > 22));
}
qsort(friends, n, sizeof(struct Friend), compare);
for (int i = 0; i < n; i++) {
printf("%s %s %s\n", friends[i].name, friends[i].birthday, friends[i].phone);
}
return 0;
}
```
这个程序定义了一个 `Friend` 结构体,包含了姓名、生日、电话号码和年龄四个字段。在输入时,将生日字符串转换为年龄,再根据年龄排序输出。注意,这里的年龄计算方式并不是完全准确的,但是足够简单地表达这个问题了。
阅读全文