Integers
Types for storing integers.Example
Other pieces of example codes:sbyte y = -(15 % 4);
int y = -(15123 div 70);
ushort y = 1025 % 8;
ulong y = 10250 div 8;
short y = -(1500 % 60);
uint y = 1025 div 8;
You can find it in the following collections: numbers | data types
Integers in another programming language: