CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>
using namespace std;
int main() {
try{
int motherAge=22;
int sonAge=32;
if(sonAge>motherAge) {
throw 99;
}
}
catch(int x){
cout<<"wrong age value -Error";
}
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Ejecutar