实验要求:输入30个学生的学号、姓名和5门课程的成绩,计算总分并按照总分排出名次,最后按照学号顺序打印成绩单, 并把成绩单输出为excel文件。

txt数据:

2015020981 甲 90 89 99 88 79
2015020986 戌 97 87 97 60 79
2015020970 鹏 97 88 77 80 79
2015020983 丙 92 89 70 88 79
2015020984 丁 93 84 96 36 77
2015020982 乙 61 88 99 84 70
2015020985 戊 94 81 94 82 75
2015020989 三 93 89 99 88 50
2015020994 八 91 88 49 84 70
2015020987 一 99 89 99 88 60
2015020988 二 91 58 69 84 70
2015020969 将 94 51 94 82 75
2015020960 孙 91 88 99 84 99
2015020990 四 93 84 96 86 77
2015020995 九 92 50 99 88 79
2015020992 六 97 87 97 80 79
2015020993 七 90 69 99 88 79
2015020997 张 74 81 54 82 75
2015020996 十 63 84 96 86 77
2015020965 郑 90 88 99 88 79
2015020998 王 97 87 100 80 79
2015020999 李 40 89 99 88 79
2015020963 刘 94 89 94 82 75
2015020961 赵 92 89 99 88 79
2015020962 岳 93 84 96 86 100
2015020966 林 51 88 99 84 70
2015020964 宋 97 87 47 80 79
2015020968 宗 93 84 96 86 57
2015020967 任 92 89 99 70 79
2015020991 五 94 81 44 82 75

源代码:

#include<iostream>
#include<cstdio>
#include<fstream>
#include<string>
#include<algorithm>
using namespace std;
struct Student
{

int id;
    string name;
    int score[5];
    int total;
    int rank;
public:
    friend ostream & operator<<(ostream & out, const Student &stu);
    friend istream & operator>>(istream & in, Student &stu);
};
ostream & operator <<(ostream & out, const Student &stu)
{
    out << stu.id<<"\t"<<stu.name << "\t" << stu.score[0]<<"\t"<< stu.score[1]
        <<"\t" << stu.score[2]<<"\t"<< stu.score[3]<<"\t" << stu.score[4] <<"\t"
        <<stu.total<<"\t"<<stu.rank<<endl ;
    return out;
}
istream & operator >>(istream & in,  Student &stu)
{
    in>>stu.id>>stu.name >> stu.score[0]>> stu.score[1]>> stu.score[2]
        >> stu.score[3] >>stu.score[4];
    return in;
}
int main()
{
    string filename1;
    int num = 0;
    Student stu[100];
    int ReadTextFile(string fname, Student stu[]);//从文件中读取TXT数据
    void PrintScreen(Student stu[], int n);//打印数据在屏幕中
    void Total(Student stu[],int n);//计算总分
    void Rank(Student stu[], int n);//计算排名
    void Sort(Student stu[], int n);//按学号排序
    void WExcel(Student stu[], int n);//在Excel中输出
    filename1 = "c:\\score.txt";
    num=ReadTextFile(filename1, stu);
    Total(stu,num);
    Rank(stu, num);
    Sort(stu, num);
    WExcel(stu, num);
    PrintScreen(stu, num); 
}

//从文件中读取TXT数据
int ReadTextFile(string fname, Student stu[])
{
    int i = 0;
    ifstream fin(fname);
    if (!fin)
    {
        cout << "source text file error\n";
        return 0;
    }
    fin >> stu[i];
    while (!fin.eof())
    {
        i++;
        fin >> stu[i];
    }
    fin.close(); 
    return i;
}

//打印数据在屏幕中
void PrintScreen(Student stu[], int n)
{
    for (int i = 0; i <n; i++)
        cout << stu[i];
}
void Total(Student stu[],int n)
{
    for (int i=0; i < n; i++)
    {
        stu[i].total= stu[i].score[0] + stu[i].score[1] + stu[i].score[2]
            + stu[i].score[3] + stu[i].score[4];
    }
}

//计算总分
void Rank(Student stu[], int n)
{
    int temp,i,j;
    for ( i = 0; i < n; i++)
    {
        temp = 0;
        {for (j = 0; j < n; j++)
            if (stu[i].total<=stu[j].total)
                temp++;
        stu[i].rank = temp;
        }
    }
}

//按学号排序
void Sort(Student stu[],int n)
{
    int i, j;
    Student temp;
    for(i=0;i<n;i++)
        for(j=i+1;j<n;j++)
            if (stu[i].id>stu[j].id)
            {
                temp = stu[i];
                stu[i] = stu[j];
                stu[j] = temp;
            }
}

//在Excel中输出
void WExcel(Student stu[], int n)
{
    ofstream oFile;
    oFile.open("1.csv", ios::out | ios::trunc);
    oFile << "学号"<<"," << "姓名" << "," << "成绩1" << "," << "成绩2" 
        << ","<<"成绩3"<<"," << "成绩4"<<" ,"<< "成绩5"<<","
        <<"总分"<<","<<"排名"<<endl;
    for (int i = 0; i < n; i++)
    {
        oFile << stu[i].id << "," << stu[i].name << "," << stu[i].score[0] 
            << "," << stu[i].score[1]<< "," << stu[i].score[2] << "," 
            << stu[i].score[3] << "," << stu[i].score[4]<<","<<stu[i].total
            <<","<<stu[i].rank<<endl;
    }
    oFile.close();
}

学生成绩管理系统: 统计成绩排序并打印(c++)(内含读取文件.txt及将文件输出excel的方法)的更多相关文章

  1. 【转】 [C/OC的那点事儿]NSMutableArray排序的三种实现(依赖学生成绩管理系统).

    原文网址:http://blog.csdn.net/ministarler/article/details/17018839 c语言实现的学生成绩管理系统是面向过程的,而OC实现的学生成绩管理系统则是 ...

  2. c++链表实现学生成绩管理系统(简易版)

    #include<iostream> using namespace std; typedef struct student{ int id;//学号 string sex; string ...

  3. 学生成绩管理系统C(链表)语言

    #include"stdio.h" #include"stdlib.h" #include"string.h" //用于调用一些函数 str ...

  4. 学生成绩管理系统[C]

    #include<stdio.h> #include<stdlib.h> #include<string.h> #include<conio.h> #d ...

  5. 使用C++名单在文档处理和学生成绩管理系统相结合

    对于学生成绩管理系统,我并不陌生,几乎学习C人的语言.做项目会想到学生成绩管理系统,我也不例外.在研究中的一段时间C语言之后,还用C语言到学生管理系统,然后做几个链接.计数,这个系统是以前的系统上的改 ...

  6. 【学生成绩管理系统】 大二c语言作业

    几年前写的了,只能在命令行窗口运行,虽然比较挫,还是有一定参考价值... #include <cstdio> #include <conio.h> #include <i ...

  7. [项目记录] 用c语言完成的一个学生成绩管理系统

    一.要求: 学生成绩管理系统 某班有最多不超过30人(具体人数由键盘输入)参加期末考试,最多不超过6门(具体门数由键盘输入).使用链表编程实现如下菜单驱动的学生成绩管理系统. 从文件读入每个学生个人信 ...

  8. 学生成绩管理系统C++

    今天晚上终于做完了学生成绩管理系统!激动!开心!!!哈哈哈~~~~ 总共298行代码,第一次写这么多. 其中遇到了好多困难,也烦恼了好久,不过最终都解决了! 做了之后果然,满满的成就感!抑制不住的兴奋 ...

  9. C语言项目:学生成绩管理系统

    C语言项目:学生成绩管理系统    1.数据结构:学生信息:学号.姓名.年龄.性别.3课成绩    2.功能:   (1)增加学生记录    (2)  删除学生记录    (3)  查找学生信息(学号 ...

随机推荐

  1. 如何利用Excel快速批量生成想要的代码

    如何利用Excel快速批量生成想要的代码 使用场景 在HTML DOM Video 对象这个页面 我想要将所有的中文描述和对应的属性(共32个属性)打印出来--console.log(descript ...

  2. 【C/C++】C和C++11之enum枚举的使用细节

    作者:李春港 出处:https://www.cnblogs.com/lcgbk/p/14101271.html 目录 一.前言 二.C中的枚举(enum) 2.1 C中枚举的大小 2.2 C中枚举的取 ...

  3. 移动端点击300ms延迟问题

    移动端点击延迟事件 1. 移动端浏览器在派发点击事件的时候,通常会出现300ms左右的延迟 2. 原因: 移动端的双击会缩放导致click判断延迟 解决方式 1. 禁用缩放 `<meta nam ...

  4. CSP-S 2020 题解

    赛后我重拳出击,赛场上我却爆零.哎. 题解本人口胡.有错请各位大佬们指出. A. 儒略日 这题是大型模拟题. 介绍两种写法:一种代码量致死(赛 场 自 闭),一种是非常好写的. 写法 1 我在赛场的思 ...

  5. 如何写好商用PPT,计算机行业PPT模板

    如何写好商用PPT,这个问题如果从0开始写那确实需要花费一番功夫,今天我不是来教你如何做PPT,而是教你如何从一个小白如何快速能套用模板,从而做出一个自己行业相关的模板,比如计算机行业PPT模板,奶茶 ...

  6. Java IO流 BufferedInputStream、BufferedOutputStream的基本使用

    BufferedInputStream.BufferedOutputStream的基本使用 BufferedInputStream是FilterInputStream流的子类,FilterInputS ...

  7. 【C#】DockPanelSuite 中 DockState.Document 状态下子窗体控件不显示的解决方案

    DockPanelSuite 是 Winform 中优秀的布局控件,但是这次使用过程中却出了个问题. 我遇到的问题是这样的,主窗体是通过 ShowDialog 显示的,子窗体的停靠状态为 DockSt ...

  8. 洛谷题解 P1051 【谁拿了最多奖学金】

    其实很水 链接: P1051 [谁拿了最多奖学金] 注意: 看好信息,不要看漏或看错因为信息很密集 AC代码: 1 #include<bits/stdc++.h>//头文件 2 using ...

  9. Docker来搭建分布式文件系统FastDfs

    对于文件存储来说,一般情况下简单的处理就是在Django配置文件中配置存储目录,按照规则对文件进行上传或者下载. 实际上,当文件较少的时候,Django是可以应付的过来的.但当文件以海量形式出现的时候 ...

  10. ceph存储集群的应用

    1.ceph存储集群的访问接口   1.1ceph块设备接口(RBD) ceph块设备,也称为RADOS块设备(简称RBD),是一种基于RADOS存储系统支持超配(thin-provisioned). ...