资源简介
学生考勤管理系统,实现学生的考勤情况,包括记录学生缺课情况,查询、修改、删除学生缺课记录以及统计某时间段内旷课情况
代码片段和文件信息
#include “stdafx.h“
#include “stdlib.h“
#include
#include
#include
#include
using namespace std;
const int max=100;
class record
{
public:
void set(string dint cnostring cstring sint type)
{
date.assign(d);
cname.assign(c);
sname.assign(s);
this->cno=cno;
this->type=type;
}
void set(record re)
{
date.assign(re.date);
cname.assign(re.cname);
sname.assign(re.sname);
this->cno=re.cno;
this->type=re.type;
}
string tostr()
{
string s;
char tmp[3];
s.assign(date);
itoa(cnotmp10);
s.append(“#“);
s.append(tmp);
s.append(“#“);
s.append(cname);
s.append(“#“);
s.append(sname);
itoa(typetmp10);
s.append(“#“);
s.append(tmp);
return s;
}
string datecnamesname;
int cnotype;
};
class records
{
public:
records()
{
r=new record[max];
n=0;
}
void order_s()
{
string *s=new string[n];
int *c=new int [n];
s[0].assign(r[0].sname);
c[0]=1;
int k=1flag;
for(int i=1;i {
flag=0;
for(int j=0;j if(r[i].sname==s[j])
{
c[j]++;
flag=1;
break;
}
if(!flag)
{
s[k]=r[i].sname;
c[k++]=1;
}
}
for(i=1;i for(int j=i;j>0;j--)
{
if(c[j]>c[j-1])
{
int tmp=c[j];
c[j]=c[j-1];
c[j-1]=tmp;
string stmp=s[j];
s[j]=s[j-1];
s[j-1]=stmp;
}
}
cout<<“旷课学生姓名\t旷课次数“< for(i=0;i cout< }
void order_c()
{
string *s=new string[n];
int *c=new int [n];
s[0].assign(r[0].cname);
c[0]=1;
int k=1flag;
for(int i=1;i {
flag=0;
for(int j=0;j if(r[i].cname==s[j])
{
c[j]++;
flag=1;
break;
}
if(!flag)
{
s[k]=r[i].cname;
c[k++]=1;
}
}
for(i=1;i for(int j=i;j>0;j--)
{
if(c[j]>c[j-1])
{
int tmp=c[j];
c[j]=c[j-1];
c[j-1]=tmp;
string stmp=s[j];
s[j]=s[j-1];
s[j-1]=stmp;
}
}
cout<<“课程名\t旷课人次“< for(i=0;i cout< }
record *r;
int n;
};
void wt(records *r)
{
ofstream outf(“data.txt“);
for(int i=0;in;i++)
outf<r[i].tostr()< outf<<“!“< }
void rd(records *r)
{
ifstream inf(“data.txt“);
if(inf.eof())
{
cout<<“记录为空!“< return;
}
string t1t3t4;
char tmp[30];
int t2t5;
r->n=0;
while(true)
{
inf.getline(tmp10‘#‘);
if(tmp[0]==‘!‘)break;
t1.assign(tmp);
inf.getline(tmp3‘#‘);
t2=atoi(tmp);
inf.getline(tmp30‘#‘);
t3.assign(tmp);
inf.getline(tmp30‘#‘);
t4.assign(tmp);
inf.getline(tmp3);
t5=atoi(tmp);
r->r[r->n++].set(t1t2t3t4t5);
}
}
bool timechk(string t1)
{
int year=atoi(t1.substr(02).c_str());
int month=atoi(t1.substr(22).c_str());
int day=atoi(t1.substr(42).c_str());
if(!(t
- 上一篇:LIVE555源码C语言格式
- 下一篇:nachos操作系统实验三
相关资源
- C++实现Apriori算法
- c++实现的读写csv文件
- C++ Prime Plus中文版第六版
- 钱能c++程序设计教程修订版答案
- 用C\\C++实现操作系统经典同步问题,
- Visual C++ 2013 从入门到精通源代码
- C++商店购物系统课程设计论文
- C++版本的百度搜索爬虫获取搜索结果
- 利用opengl 组件的基础上使用VC++编写的
- CC++ To Delphi转换器(源码)
- C++程序设计朱金付版课后习题答案
- C++上机实验答案 朱金付版
- 动态规划解TSP(旅行商)问题C++源码
- C++五子棋程序代码基础实现
- VC++编写DLL导出函数及其调用方法
- C++电梯调度系统源代码
- 理财管理系统 c++代码
- 基于QT的用C++编写的中国象棋软件源代
- 格子玻尔兹曼方法计算顶盖驱动流源
- Visual C++数字图像处理技术详解 pdf+源
- C++语言版本的DES加解密应用程序源码
- C++ 网络聊天室设计报告及主要源程序
- 空间后方交会C++
- 层次聚类算法C++
- BOOTH算法C++实现
- VS2010 C++窗口应用程序窗口之间传递参
- C++项目-图书管理系统
- 马石安编写的VC++程序设计与应用程序
- mfc获取mac地址的小程序
- 基于定步长四阶龙格库塔法的C++弹道
评论
共有 条评论