Try and Catch
195C1800· expert2s256 MB⌨ stdin/stdout
Examples
Sample 1of 3
Input
8trytrythrow ( AE )catch ( BE, "BE in line 3")trycatch(AE, "AE in line 5")catch(AE,"AE somewhere")
Output
AE somewhere
Sample 2of 3
Input
8trytrythrow ( AE )catch ( AE, "AE in line 3")trycatch(BE, "BE in line 5")catch(AE,"AE somewhere")
Output
AE in line 3
Sample 3of 3
Input
8trytrythrow ( CE )catch ( BE, "BE in line 3")trycatch(AE, "AE in line 5")catch(AE,"AE somewhere")
Output
Unhandled Exception
58%
195C.cpp
loading editor…
Ln 11·137 BGNU C++20 (64)