関数intmin マニュアル
(The documentation of function
intmin
)
Last Update: 2023/6/27
◆機能・用途
(Purpose)
任意の個数の整数値の中から最小値を求める。
Identify the minimum value from an arbitrary number of integers.
◆形式
(Format)
#include <intmath.h>
inline int intmin(const int number,...)
◆引数
(Arguments)
number
整数の個数。
The number of integers.
...
整数のリスト。全てint型とする。
A list of integers, all of which must be
int
-type.
◆戻り値
(Return value)
可変個引数(...)で与えた整数の中の最小値。
The minimum value among the integers given by the variable-size arguments (...).
◆使用例
(Example)
int minValue=intmin(4,1,3,-5,7);
この例ではminValue=-5となる。
This example gives
minValue
=-5.