โ Back to Exceptions
Question 653
Checked Overflow
Checked Overflow
Read two integers and add them inside achecked(...)expression, then printSum: <sum>. In acheckedcontext, an addition that overflowsintthrows anOverflowException; catch it and printOverflow!. Use top-level statements. Input2then3prints: Sum: 5 Input2000000000then2000000000prints: Overflow!
Expected Output:
Sum: 5
Topics:
Exceptions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.