MaxVal
Result = MaxVal(Value1, Value2)
 
Parameters:

    Value1 = First value you wish to compare
    Value2 = Second value you wish to compare
Returns:

    Result = The biggest value of the two
 

      The MaxVal() function calculates the max value (biggest value) between a pair of values.



FACTS:


     * MaxVal returns the max value as a Integer

     * MaxVal is equal to the following code fragment

  
Function MaxValue(Value1#,Value2#)
  If Value1#>Value2#
     Result=Value1#
  Else
     Result=Value2#
  EndIf
EndFunction Result
  






Mini Tutorial:


     This example uses of the MaxVal function to display the biggest of the two values.


  
  
; Create two variables to compare
  Value1#=100.34
  Value2#=200.01
  
;display the min value of the pair as a Integer
  Print MinVal(Value1#,Value2#)
  
;display the min value of the pair as a Float
  Print MinVal#(Value1#,Value2#)
  
;display the Max value of the pair as a Integer
  Print MaxVal(Value1#,Value2#)
  
;display the min value of the pair as a Float
  Print MaxVal#(Value1#,Value2#)
  
; Display the Screen and wait for the user to press a key
  Sync
  WaitKey
  



This example would output.

  
  100
  100.34
  200
  200.01
  

 
Related Info: Comparisons | if | MaxVal# | MidPoint | MinVal | MinVal# | Range | SwapIfHigher | SwapIfLower :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com