Manuals/calci/UNITOP

From ZCubes Wiki
Revision as of 06:39, 6 April 2017 by Swapna (talk | contribs) (Created page with "<div style="font-size:30px">'''UNITOP(OP,A,B)'''</div><br/> *<math>OP</math> is the operation to be performed *<math>A</math> and <math>B</math> are any two real numbers. ==D...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
UNITOP(OP,A,B)


  • is the operation to be performed
  • and are any two real numbers.

Description

  • This function performs the operation mentioned as an argument with the two numbers entered.
  • In , is the operation to be performed. and are any two real numbers.
  • If operation can be addition, subtraction, multiplication, division, mod, greater-than, less-than etc.


Examples

  1. UNITOP(SUM,5,18) = 23
  2. UNITOP(MINUS,-90,-75) = -15
  3. UNITOP(GT,210,210) = true (checks if first number is greater than or equal to second number)
  4. UNITOP(LT,3.234, 1.42) = false (checks if first number is less than second number)
  5. UNITOP(UNITMULTIPLY,5,18) = 90
  6. UNITOP(UNITMOD,5,3) = 2
  7. UNITOP(UNITDIVIDE,50,5) = 10


See Also

References