题目内容
程序通过定义并赋初值的方式,利用结构体变量存储了一名学生的信息。请填空实现输出这位学生的信息。#include int main( ){struct student{int num;char name[9];char sex;struct { int year,month,day ;} birthday;float score[3];};struct student std={ 1,"Zhanghua",'M',1961,10,8,76.5,78.0,82.0 };int i;printf("\nA student data:\n");printf("\n%d %s %c %d-%d-%d", std.num, std.name, std.sex,【1】,【2】 ,【3】 );for(i=0; i<3; i++)printf("%5.1f", 【4】 );printf("\n");return 0;}
查看答案
搜索结果不匹配?点我反馈