代码搜索:minmax

找到约 1,257 项符合「minmax」的源代码

代码结果 1,257
www.eeworm.com/read/290380/8487052

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/286953/8736535

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/430096/8766999

java minmax.java

// operators/MinMax.java // TIJ4 Chapter Operators, Exercise 9, page 111 // Display the largest and smallest numbers for both float and double // exponential notation. public class MinMax { p
www.eeworm.com/read/187002/8885611

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/283498/9016311

asm minmax.asm

; This program demonstrates how to compute the minimum and maximum values ; for an array of signed integers using the bound instruction .xlist .286 include stdlib.a inclu
www.eeworm.com/read/426483/9018079

h minmax.h

/*! ************************************************************************ * \file * minmax.h * \brief * defines min and max macros for non WIN32 environments ***************
www.eeworm.com/read/382584/9020127

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/382395/9032058

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/184772/9077988

test minmax.test

# 2001 September 15 # # The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for yo
www.eeworm.com/read/380940/9121312

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