Day 16: Exceptions - String to Integer

  • + 18 comments

    those who are looking for a c++ code:

    int main()
    {
        string S;
        cin >> S;
        try
        {
            int no;
            no=stoi(S);
            cout<<no<<endl;
        }
        catch(exception a)
        {
            cout<<"Bad String";
        }
        return 0;
    }