I don't know what happened but everytime I put Letters and Special Characters It loops insanely, and I dont know how to correct it. It is i think from the claude part.
#include<iostream>
using namespace std;
    int main()
    {
        int a,b;
    Claude:
    {
    cout<<"Please Enter Your Pin: ";
    cin>>a;
    cout<<endl;
    system("cls");
    cin.get();
    }
        if(a==1234)
    {       Josh:
           cout<<"Choose An Option: "<<endl;
           cout<<"1: Withdraw                 2: Check Balance";
           cout<<endl;
           cout<<"3: Deposit                  4: Exit";
           cout<<endl;
          cout<<"Enter Here: ";
          cin>>b;
          system("cls");
    }
    else
        {
        cout<<"Incorrect Pin, Please Try Again"<<endl;
        cout<<endl;
        cout<<"Press Any Key To Continue "<<endl;
        system("pause>nul");
        system("cls");
        goto Claude;
    }
      if(b==1)
        {
        cout<<"How Much: ";
        }
    else if (b==2)
        {
        cout<<"2000.00";
        }
    else if(b==3)
        {
        cout<<"Nothing To Withdraw";
        }
    else if(b==4)
        {
        cout<<"test";
        }   
    else
        {
            cout<<"Please Enter Valid Input, Press Any Key To Continue ";
            cin.get();
            system("cls");
            goto Josh;  
        }
    return 0;   
    }
The code is working without error and working properly. Please look for the result in your own dev C++.
 
     
     
    