C 练习实例71-结构体

**题目:**编写input()和output()函数输入,输出5个学生的数据记录。

代码:

cpp 复制代码
#include <stdio.h>
typedef struct{
	char name[20];
	char sex[2];
	int age;
}student;	//定义了一种新的数据类型,叫做:student
void input(student *stu)
{
	printf("请输入5个学生的信息:姓名 性别 年龄:\n");
	for(int i=0;i<5;i++){
		scanf("%s %s %d",stu[i].name,stu[i].sex,&stu[i].age);
	}
}
void output(student *stu)
{
	 printf("5个学生的信息如下:\n姓名  性别  年龄\n");
	for(int i=0;i<5;i++){
		printf("%s  %s    %d\n",stu[i].name,stu[i].sex,stu[i].age);
	}
}
int main()
{
	student stu[5];	//结构体数组
	input(stu);
	output(stu);
	return 0;
}

输入:

bash 复制代码
请输入5个学生的信息:姓名 性别 年龄:
刘一 男 10
刘二 女 11
刘三 男 12
刘四 女 13
刘五 男 14

输出:

bash 复制代码
5个学生的信息如下:
姓名  性别  年龄
刘一  男    10
刘二  女    11
刘三  男    12
刘四  女    13
刘五  男    14
相关推荐
lb36363636363 小时前
介绍一下数组(c基础)(详细版)
c语言
一丝晨光4 小时前
编译器、IDE对C/C++新标准的支持
c语言·开发语言·c++·ide·msvc·visual studio·gcc
执笔者5486 小时前
C语言:函数栈帧的创建与销毁
c语言
_小柏_6 小时前
C/C++基础知识复习(15)
c语言·c++
weixin_399264296 小时前
信捷 PLC C语言 POU 指示灯交替灭0.5秒亮0.5秒(保持型定时器)
c语言·开发语言
Darkwanderor7 小时前
用数组实现小根堆
c语言·数据结构·二叉树·
敲上瘾8 小时前
C++11新特性(二)
java·c语言·开发语言·数据结构·c++·python·aigc
知星小度S9 小时前
数据结构——排序
c语言·数据结构·算法
lb363636363610 小时前
扫雷游戏代码分享(c基础)
c语言·算法·游戏
DdddJMs__13512 小时前
C语言 | Leetcode C语言题解之第542题01矩阵
c语言·leetcode·题解