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
As the above image show, the current maximum length of number nine digit, at that time, when press any digit button, the number just display randomly as the following image show.
In general, when reach the maxium length, the number should retain no change if the next input is still digit until clear or perform other operation.
The text was updated successfully, but these errors were encountered:
The type of calc->stack[0] is int,
and the maximum value for an int is 2,147,483,647.
Conservatively, we ensure that when the length reaches 9 digits,
pressing the digit button will not increase the number of digits.
Closesysprog21#25
Bennctu
added a commit
to Bennctu/mado
that referenced
this issue
Aug 22, 2024
The type of calc->stack[0] is int,
and the maximum value for an int is 2,147,483,647.
Conservatively, we ensure that when the length reaches 9 digits,
pressing the digit button will not increase the number of digits.
Closesysprog21#25
As the above image show, the current maximum length of number nine digit, at that time, when press any digit button, the number just display randomly as the following image show.
In general, when reach the maxium length, the number should retain no change if the next input is still digit until clear or perform other operation.
The text was updated successfully, but these errors were encountered: