Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <ctype.h>
- using namespace std;
- class announce{
- public:
- void funcao(){
- cout<<"Erro!"<<endl;
- }
- };
- int main()
- {
- try{ // Trata algo;
- cout<<"Se voce Digitar algo no fora do intervalo entre 10 a 50 vai da error!"<<endl;
- int num;
- cin>>num;
- if(num>=10 && num<=50){
- cout<<("<<Number")<<"Esta no escopo "<<num<<endl;
- }else{
- throw num; // Vai lançar um erro;
- }
- }
- catch (int initCatch){ // Vai pegar algo para tratar. Se o type ser diferente do tipo dentro do try dara erro;
- cout<<"Error"<<endl;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement