代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/132006/14115324
pas unit1.pas
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
Function FUNC(X:real):real;
Function FUNC2(X:array of real;N:integer):real;
www.eeworm.com/read/131284/14152271
h precisio.h
//$$ precisio.h floating point constants
#ifndef PRECISION_LIB
#define PRECISION_LIB 0
#ifndef SystemV // if there is float.h
#ifdef USING_FLOAT
www.eeworm.com/read/233421/14153364
pas unit1.pas
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
Function FUNC(X:real):real;
Function FUNC2(X:array of real;N:integer):real;
www.eeworm.com/read/129922/14217387
c minmax.c
#include
#define MIN(x, y) (((x) < (y)) ? (x): (y))
#define MAX(x, y) (((x) > (y)) ? (x): (y))
void main(void)
{
printf("Minimum of 3 and 5 is %d\n", MIN(3, 5));
printf("Max
www.eeworm.com/read/129922/14217456
c min_max.c
#include
#include
void main (void)
{
printf("Maximum of %f and %f is %f\n",
10.0, 25.0, max(10.0, 25.0));
printf("Minimum of %f and %f is %f\n",
10.0,
www.eeworm.com/read/230855/14272104
c ch05.02.c
// #include
#include
#include
/**
** Minimum value: 1 occurs: 5 times.
**/
int min( const vector< int > &ivec, int &occurs )
{
int minVal = ivec[
www.eeworm.com/read/128628/14286482
c min_max.c
#include
#include
void main(void)
{
printf("Maximum of %f and %f is %f\n",
10.0, 25.0, max(10.0, 25.0));
printf("Minimum of %f and %f is %f\n",
10.0, 2
www.eeworm.com/read/229127/14352495
c ch05.02.c
// #include
#include
#include
/**
** Minimum value: 1 occurs: 5 times.
**/
int min( const vector< int > &ivec, int &occurs )
{
int minVal = ivec[