-

From QB64 Phoenix Edition Wiki
Revision as of 21:53, 20 April 2022 by SMcNeill (talk | contribs) (Created page with "The '''-''' mathematical operator performs subtraction on two numerical values or negates a single value. ''Syntax:'' return_value = number1 - number2 {{PageDescription}} * Numbers used can be any literal or variable numerical value type. * Subtracting a negative value will actually perform addition with the other value. * Subtracting a negative or negated value will make the return value more positive. * Addition and subtraction are th...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The - mathematical operator performs subtraction on two numerical values or negates a single value.


Syntax: return_value = number1 - number2


Description

  • Numbers used can be any literal or variable numerical value type.
  • Subtracting a negative value will actually perform addition with the other value.
  • Subtracting a negative or negated value will make the return value more positive.
  • Addition and subtraction are the last operations performed in Qbasic's normal order of operations.
  • Subtraction cannot be performed on STRING values.


See also:

+ positive (addition operator)

Mathematical Operations



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link