Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
"ERROR: Integer inputs required."

Example

 
Code Block
// Find the LCM of of 333333333333333333333 and 18181818181818181818 
Val1 = "33333333333333333333" 
Val2 = "18181818181818181818" 
Result = SRP_Math("LCM", Val1, Val2) 
!! Result = 199999999999999999998.0 !! 
 

...

Code Block
// Attempting to find the LCM of PI and E results in an error 
Val1 = "3.1415926535897932384626433832795" 
Val2 = "2.7182818284590452353602874713527" 
Result = SRP_Math("LCM", Val1, Val2) 
!! Result = "ERROR: Integer inputs required." !!

 

...