1 Star 3 Fork 1

qrcat/学生信息管理系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
studentinfo.h 528 Bytes
一键复制 编辑 原始数据 按行查看 历史
qrcat 提交于 2021-05-25 22:41 . 添加了排序
#pragma once
#ifndef STUDENTINFO_H
#define STUDENTINFO_H
struct StudentInfo
{
// 数据长度
static const int LENGTH = 3;
char sid[20]; //学号
char name[20]; //名字
char sex; //性别
int score[LENGTH]; // 成绩
int count() { // 总成绩
int count_n = 0;
for (int i = 0; i < LENGTH; i++)
count_n += score[i];
return count_n;
}
int average() { // 均分
return count()/LENGTH;
}
};
#endif // SUBJECTSCORE_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ruaqy/my_student_manager.git
git@gitee.com:ruaqy/my_student_manager.git
ruaqy
my_student_manager
学生信息管理系统
master

搜索帮助