• 大小: 4KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-03
  • 语言: C/C++
  • 标签:

资源简介

struct student { char name[20]; //学生的姓名 long int num; //学生的学号 int classroom,grade; //学生的班级和年级 double english,math,c; //学生的各科成绩 double sum; //学生的总成绩 double average;//学生的平均成绩 int order; //学生的排名 struct student *next; };

资源截图

代码片段和文件信息

#include
#include
#include 
#include
#include
using namespace std;
int n;    //定义一个全局变量统计学生人数
struct student
{
char name[20];    //学生的姓名
long int num;     //学生的学号
int classroomgrade;    //学生的班级和年级
double englishmathc;  //学生的各科成绩
double sum;    //学生的总成绩
double average;//学生的平均成绩
int order;     //学生的排名
struct student *next;
};

student *first(student *head)    //建立头指针
{
head=new student;
head->next=NULL;
return head;
}

/*************************************************************************/
//1.学生基本信息输入包括成绩
void input(student *head)
{
student *p=new student;
student *q=NULL;
cout<<“\n\n    请输入学生的姓名:“;
cin>>p->name;
cout<<“\n    请输入学生的学号:“;
cin>>p->num;
while(p->num<0||p->num>1999999999)    

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      16816  2011-08-12 22:52  学生成绩与奖学金评定系统.cpp

     文件        461  2011-08-23 16:52  学生信息(读取).txt

     文件       1095  2011-08-23 16:52  学生信息(保存).txt

     文件         32  2011-08-23 16:52  评定结果.txt

----------- ---------  ---------- -----  ----

                18404                    4


评论

共有 条评论