We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 677f926 commit 406869bCopy full SHA for 406869b
01-intro-to-java/lecture/slides.md
@@ -414,7 +414,7 @@ int mask = 0b1010_1010_1010;
414
| char | 16 бита | Unicode 0 | Unicode 2<sup>16</sup> - 1 | Character |
415
| byte | 8 бита | -128 | +127 | Byte |
416
| short | 16 бита | -2<sup>15</sup> | +2<sup>15</sup> - 1 | Short |
417
-| int | 32 бита | -2<sup>31</sup> | +2<sup>15</sup> - 1 | Integer |
+| int | 32 бита | -2<sup>31</sup> | +2<sup>31</sup> - 1 | Integer |
418
| long | 64 бита | -2<sup>63</sup> | +2<sup>63</sup> - 1 | Long |
419
| float | 32 бита | IEEE754 | IEEE754 | Float |
420
| double | 64 бита | IEEE754 | IEEE754 | Double |
0 commit comments