← Back to Exceptions
Question 683
Missing Dictionary Key
Missing Dictionary Key
ADictionary<string, int>maps names to ages (Alice=30,Bob=25). Read a name and print its age withages[name]. Looking up a key that is not present throws aKeyNotFoundException— catch it and print exactlyName not found. Use top-level statements withtry/catch. InputAliceprints: 30 InputZoeprints: Name not found
Expected Output:
30
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.