Page History
...
| Code Block |
|---|
"ERROR: Integer inputs required." |
Example
| Code Block |
|---|
// Find the GCD of of 333333333333333333333 and 18181818181818181818
Val1 = "33333333333333333333"
Val2 = "18181818181818181818"
Result = SRP_Math("GCM", Val1, Val2)
!! Result = 3030303030303030303.0 !! |
...
| Code Block |
|---|
// Attempting to find the GCD of PI and E results in an error
Val1 = "3.1415926535897932384626433832795"
Val2 = "2.7182818284590452353602874713527"
Result = SRP_Math("GCM", Val1, Val2)
!! Result = "ERROR: Integer inputs required." !! |
...