代码搜索:Maximum
找到约 9,165 项符合「Maximum」的源代码
代码结果 9,165
www.eeworm.com/read/211365/15182354
c maximum.c
int
maximum(double *vec,int dim)
{
int i;
double ma;
int inx;
inx=0;
ma=0.0;
for (i=0;ima)
{
ma=vec[i];
inx=i;
}
}
return(inx);
}
www.eeworm.com/read/208576/15243954
h maximum.h
// Fig. 6.26: maximum.h
// Definition of function template maximum.
template < class T > // or template< typename T >
T maximum( T value1, T value2, T value3 )
{
T maximumValue = value1; //
www.eeworm.com/read/470676/1467792
vhd maximum.vhd
FUNCTION maximum (a,b : integer) RETURN integer IS
VARIABLE tmp : integer;
BEGIN
IF (a > b) THEN
tmp := a;
ELSE
tmp := b;
END IF
www.eeworm.com/read/457229/1599525
c maximum.c
int
maximum(double *vec,int dim)
{
int i;
double ma;
int inx;
inx=0;
ma=0.0;
for (i=0;ima)
{
ma=vec[i];
inx=i;
}
}
return(inx);
}
www.eeworm.com/read/228404/4764795
c maximum.c
int
maximum(double *vec,int dim)
{
int i;
double ma;
int inx;
inx=0;
ma=0.0;
for (i=0;ima)
{
ma=vec[i];
inx=i;
}
}
return(inx);
}
www.eeworm.com/read/223561/4810584
java maximum.java
// Tutorial 12: Maximum.java
// Program finds and displays the greatest value entered by the user.
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Maximum extends
www.eeworm.com/read/223561/4810592
java maximum.java
// Tutorial 12: Maximum.java
// Program finds and displays the greatest value entered by the user.
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Maximum extends
www.eeworm.com/read/221464/4830709
cpp maximum.cpp
// Boost.Signals library
// Copyright Doug Gregor 2001-2003. Use, modification and
// distribution is subject to the Boost Software License, Version
// 1.0. (See accompanying file LICENSE_1_0.txt
www.eeworm.com/read/221447/4832526
c maximum.c
int
maximum(double *vec,int dim)
{
int i;
double ma;
int inx;
inx=0;
ma=0.0;
for (i=0;ima)
{
ma=vec[i];
inx=i;
}
}
return(inx);
}
www.eeworm.com/read/202518/5050614
cpp maximum.cpp
// FD.Delegate library examples
// Copyright Douglas Gregor 2001-2003. Use, modification and
// distribution is subject to the Boost Software License, Version
// 1.0. (See accompanying file LICEN