C 練習(xí)實(shí)例71

C 語言經(jīng)典100例 C 語言經(jīng)典100例

題目:編寫input()和output()函數(shù)輸入,輸出5個(gè)學(xué)生的數(shù)據(jù)記錄。

程序分析:無。

程序源代碼:

//  Created by o2fo.com on 15/11/9.
//  Copyright © 2015年 W3Cschool教程. 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個(gè)學(xué)生的信息:姓名 性別 年齡:\n");
    input(stu);
    printf("5個(gè)學(xué)生的信息如下:\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);
}

以上程序執(zhí)行輸出結(jié)果為:

請輸入5個(gè)學(xué)生的信息:姓名 性別 年齡:
aaa m 15
bbb m 16
ccc m 15
ddd m 17
eee m 16
5個(gè)學(xué)生的信息如下:
姓名  性別  年齡
aaa m 15
bbb m 16
ccc m 15
ddd m 17
eee m 16

C 語言經(jīng)典100例 C 語言經(jīng)典100例