Numbers

PawCalc supports seven different number formats. The formats differ based on the decimal separator and the thousand separator. The possibilities are:

  • 1000.00
  • 1000,00
  • 1,000.00
  • 1.000,00
  • 1 000,00
  • 1'000.00
  • 1'000,00

You can change the format in the Preferences. The thousand separator is optional. In the following we will use a period as the decimal separator and comma as thousand separator.

Use 'e' to indicate exponentiation.

Example:

The following numbers are identical:

  • 1200
  • 1.2e3
  • 12e2
  • 1200.0
  • 1,200

Binary numbers are prefixed by '0b', octal number by '0', and hexadecimal numbers by '0x'.

Example:

The following numbers are identical:

  • 0b1111
  • 017
  • 15
  • 0xF

Use 'i' to indicate the imaginary part of complex numbers.

Example:

  • 2i
  • 1+2i
  • 3.4i
  • 1.2e3i