#include <iostream> using namespace std;   void find(int x) {    try    {       if(x==1)         throw x;       else         if(x==0) throw 'p';         else         if(x==-1) throw 1.0;         cout<<" NO Exception " << "X value " << x;         cout<<"\…

Read more