C语言结构体的用法,

结构体类型定义如下:structdate{intyear;intmonth;intday;};//定义日期结构体类型structstudent{charname[20];... 结构体类型定义如下:
struct date{int year; int month; int day;}; //定义日期结构体类型
struct student
{ char name[20];
struct date birth; //出生日期
};
结构体数组s存储了n个人的名字和出生日期。写一函数,求这n个人中年龄最大(即出生日期最小)者的姓名。
要求实现下列函数:
char *oldest(struct student s[], int n);

请问是用 该如何写代码,我没有思路 是用 return 返回人的名字么?
展开
 我来答
水宫御子88
推荐于2017-09-24 · TA获得超过2238个赞
知道大有可为答主
回答量:3792
采纳率:50%
帮助的人:748万
展开全部

结构体的使用,首先要定义:

#include<stdio.h>
struct student
{
    char name[10];
    int num;
    int age;
};//注意要分号

//然后就可以使用了:

void main()
{
    struct student s;
    struct student *p=&s;//指针指向,可以不用指针
    printf("input name:");
    gets(s.name);//若使用指针,则:gets(p->name);
    printf("input num:");
      scanf("%d",&s.num);//指针的写法:scanf("%d",&p->num);
    printf("input age:");
    scanf("%d",&s.age);
    
    //输出结果:
    printf("name\tnum\tage\t\n");
    printf("%s\t%d\t%d\n");
    
    
}

结构体类似于数组,但结构体能定义不同的数据类型,这也是它的特别之处

reloadingText
2011-05-07 · 超过12用户采纳过TA的回答
知道答主
回答量:52
采纳率:0%
帮助的人:38.7万
展开全部
用flag表示年龄最大者在s中的位置,则可以使用return s[flag].name返回该人的姓名
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
L_o_o_n_i_e
推荐于2017-09-28 · TA获得超过4.2万个赞
知道大有可为答主
回答量:8507
采纳率:38%
帮助的人:5206万
展开全部
程序和例子如下。
比年龄,得序号 id, 返回 该 id 的 名字。
#include<stdio.h>
struct date{int year; int month; int day;};
struct student
{ char name[20]; struct date birth; };

char *oldest(struct student s[], int n){
int id=0;
int i;
for (i=1;i<n;i++){
if (s[i].birth.year < s[id].birth.year) id = i;continue;
if ((s[i].birth.year == s[id].birth.year) &&
(s[i].birth.month < s[id].birth.month) ) id = i;continue;
if ((s[i].birth.year == s[id].birth.year) &&
(s[i].birth.month == s[id].birth.month) &&
(s[i].birth.day < s[id].birth.day) ) id = i;continue;
}
return s[id].name;
}

main()
{
struct student s[4];
s[0].birth.year=1995;s[0].birth.month=5;s[0].birth.day=5;strcpy(s[0].name,"wang");
s[1].birth.year=1995;s[1].birth.month=5;s[1].birth.day=6;strcpy(s[1].name,"li");
s[2].birth.year=1994;s[2].birth.month=5;s[2].birth.day=7;strcpy(s[2].name,"wu");
s[3].birth.year=1996;s[3].birth.month=3;s[3].birth.day=5;strcpy(s[3].name,"zhao");
printf("%s",oldest(s, 4));
}
追问
谢谢你的回答,不过有一点小问题,id = i;continue;
这里应该用上 {id = i;continue;}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式