header.h

来自「我学习C++ Primer Plus过程中写下的课后作业的编程代码」· C头文件 代码 · 共 29 行

H
29
字号
// golf.h -- for pe9-1.cpp
#ifndef HEADER_H_
#define HEADER_H_

const int Len = 40;
struct golf
{
	char fullname[Len];
	int  handicap;
};

// non-interactive version;
// function sets golf structure to provided name,handicap
// using values passed as arguments to the function
void setgolf (golf & g, const char * name, int hc);

// interactive version;
// function solicits name and handicap from user
// and sets the members of g to the values entered
// returns 1 if name is entered, 0 if name is empty string
int setgolf( golf &g);

// function resets handicap to new value
void handicap (golf & g,int hc);

// function displays contents of golf structure
void showgolf (const golf & g);

#endif

⌨️ 快捷键说明

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