代码搜索:Maximum
找到约 9,165 项符合「Maximum」的源代码
代码结果 9,165
www.eeworm.com/read/286193/4041686
cpp maximum.cpp
// Tutorial 10: Maximum.cpp
// Program finds and displays the greatest value entered by the user.
#include // required to perform C++ stream I/O
#include // required to acce
www.eeworm.com/read/286193/4041687
sln maximum.sln
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Maximum", "Maximum.vcproj", "{DE6EF3A1-E350-4C0D-BC1F-0C02E0AC35D5}"
ProjectSection(P
www.eeworm.com/read/439021/1820354
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/435797/1858792
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/432527/1891709
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/423721/2022150
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/422460/2037200
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/405754/2285228
c maximum.c
/*
# proc: maxpv - returns the first position and value of maximum in a vector
# proc: of floats.
*/
#include
#include
#include
/* returns first position and
www.eeworm.com/read/375190/2734583
cpp maximum.cpp
// Boost.Signals library
// Copyright Douglas 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/364340/2906395
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);
}