You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/integers/limits.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,9 @@ is "fixed width."
5
5
6
6
Say you had a piece of paper that was only big enough to write two numbers on.
7
7
8
-
The only numbers you could write in a [base ten system](https://www.khanacademy.org/math/algebra-home/alg-intro-to-algebra/algebra-alternate-number-bases/v/number-systems-introduction) would be those from 0 to 99. You could not write 100 or anything larger.
8
+
The only numbers you could write in a [base ten system](https://www.khanacademy.org/math/algebra-home/alg-intro-to-algebra/algebra-alternate-number-bases/v/number-systems-introduction) would be those from 0 to 9. You could not write 10 or anything larger.
9
9
10
-
A Java `int` is similar except instead of only being able to write 0 to 99 on a piece of paper, a variable that has
10
+
A Java `int` is similar except instead of only being able to write 0 to 9 on a piece of paper, a variable that has
11
11
the type `int` can represent numbers from -2<sup>31</sup> to 2<sup>31</sup> - 1.
12
12
13
13
If you try to directly write out a number that is outside of that range, Java will not let you.
0 commit comments