関数intmax マニュアル

(The documentation of function intmax)

Last Update: 2023/6/27


◆機能・用途(Purpose)

任意の個数の整数値の中から最大値を求める。
Identify the maximum value from an arbitrary number of integers.


◆形式(Format)

#include <intmath.h>
inline int intmax(const int number,...)


◆引数(Arguments)

number 整数の個数。
The number of integers.
... 整数のリスト。全てint型とする。
A list of integers, all of which must be int-type.


◆戻り値(Return value)

可変個引数(...)で与えた整数の中の最大値。
The maximum value among the integers given by the variable-size arguments (...).


◆使用例(Example)

int maxValue=intmax(4,1,3,-5,7);

この例ではmaxValue=7となる。
This example gives maxValue=7.