student_info.h

来自「包括ARM开发环境的使用和一些调试用的源程序」· C头文件 代码 · 共 20 行

H
20
字号
#ifndef GUARD_Student_info
#define GUARD_Student_info

// `Student_info.h' header file
#include <iostream>
#include <string>
#include "Vec.h"

struct Student_info {
	std::string name;
	double midterm, final;
	Vec<double> homework;
};

bool compare(const Student_info&, const Student_info&);
std::istream& read(std::istream&, Student_info&);
std::istream& read_hw(std::istream&, Vec<double>&);
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?