码迷,mamicode.com
首页 > 其他好文 > 详细

输入和学生成绩的输出

时间:2015-12-11 22:18:58      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

#include<stdio.h>

/*
	学生的结构的定义。
	成员变量名称、卷号、受试者的结果。
	两名学生从键盘读取信息。
	最后,良好的背景输出谁在公告栏中承认比分淘汰。
	假设同样的比分,在公告栏中一同显示出来。

*/ //定义一个结构体类型 struct Student { char name[20]; //名字 char idNum[20]; //学籍号 float score; }; void compare(struct Student stus[],int count); int main() { //定义结构体类型的结构体数组 struct Student stu[2]; for (int i = 0; i < 2; ++i) { printf("请输入第%d个学生的姓名:\n",i+1); //输入学生的姓名 scanf("%s",stu[i].name); printf("请输入第%d个学生的学籍号:\n",i+1); //输入学生的学籍号 scanf("%s",stu[i].idNum); printf("请输入第%d个学生的成绩:\n",i+1); //输入学生的成绩 scanf("%f",&stu[i].score); } // //讲学生的打印信息 // for (int i = 0; i < 2; ++i) // { // struct Student *p = &stu[i]; // printf("姓名:%s 学籍号:%s 成绩:%.2f\n",p->name,p->idNum,p->score); // } compare(stu,2); return 0; } void compare(struct Student stus[],int count) { float max = 0; struct Student *maxStu; for (int i = 0; i < count; ++i) { //取得学生的成绩 float score = stus[i].score; if (max < score) { max = score; maxStu = &stus[i]; } } if (stus[0].score == stus[1].score) { //讲学生的打印信息 for (int i = 0; i < 2; ++i) { struct Student *p = &stus[i]; printf("姓名:%s 学籍号:%s 成绩:%.2f\n",p->name,p->idNum,p->score); } } else printf("学生信息的识别:名字:%s 卷号:%s 成就:%.2f\n",maxStu->name,maxStu->idNum,maxStu->score); }


输入和学生成绩的输出

标签:

原文地址:http://www.cnblogs.com/gcczhongduan/p/5040336.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!