题目:编写input()和output()函数输入,输出5个学生的数据记录。
程序分析:无。
程序源代码:
// Created by www.zhishitu.com on 15/11/9.// Copyright © 2015年 . All rights reserved.//#include<stdio.h>#include<stdlib.h>typedef struct{ char name[20]; char sex[5]; int age;}Stu;void input(Stu*stu);void output(Stu*stu);int main(){ Stu stu[5]; printf("请输入5个学生的信息:姓名 性别 年龄:\n"); input(stu); printf("5个学生的信息如下:\n姓名 性别 年龄\n"); output(stu); system("pause"); return 0;}void input(Stu*stu){ int i; for(i=0;i<5;i++) scanf("%s%s%d",stu[i].name,stu[i].sex,&(stu[i].age));}void output(Stu*stu){ int i; for(i=0;i<5;i++) printf("%s %s %d\n",stu[i].name,stu[i].sex,stu[i].age);}
以上程序执行输出结果为:
请输入5个学生的信息:姓名 性别 年龄:aaa m 15bbb m 16ccc m 15ddd m 17eee m 165个学生的信息如下:姓名 性别 年龄aaa m 15bbb m 16ccc m 15ddd m 17eee m 16