Signed integers

Types for storing signed integers.
8-bit integer
 sbyte

 Int8

 signed  char

 shortint

 byte
16-bit integer
 short

 Int16

integer

 smallint
32-bit integer
 int

 Int32

integer

 long

 longint
64-bit integer
 long

 Int64

 longint

 long  long

Example

Other pieces of example codes:
short y = -(1500 % 60);
long y = -(1512345 div 70);
int y = -(15123 div 70);
sbyte y = -(15 % 4);

You can find it in the following collections: integers | numbers | data types
Languages: en hu cz sk