代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/424281/10468032
out const.out
light travel time from Earth to Mars:
minimum = 4.3 minutes
maximum = 21.0 minutes
www.eeworm.com/read/160819/10495226
cpp mindata2.cpp
#include
using namespace std;
// determine minimum of all numbers in input stream
// illustrates fencepost problem: first item is minimum initialization
int main()
{
int numNums
www.eeworm.com/read/160819/10496076
cpp mindata.cpp
#include
using namespace std;
// determine minimum of all numbers in input stream
int main()
{
int numNums = 0; // initially, no numbers
int minimum = 0;
www.eeworm.com/read/424063/10501787
m arraymin.m
function [sys, x0, str, ts] = arraymin(t,x,u,flag)
%ARRAYMIN outputs the index of the minimum input.
% This M-file is designed to be used in a SIMULINK S-function block.
% This function will de
www.eeworm.com/read/277457/10637651
cpp intlimits.cpp
#include
#include
using namespace std;
int main()
{
cout
www.eeworm.com/read/277457/10637691
cpp floatlimits.cpp
#include
#include
using namespace std;
int main()
{
cout
www.eeworm.com/read/159184/10684367
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/159184/10684484
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/350922/10697456
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/350922/10697586
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,