以下のこのコードは、入力が正しいかどうかに関係なく機能しません。入力が正しい場合でも、何らかの理由でifステートメントが実行されます。簡単な提案があれば役に立ちます。
char status;
cout<<"Please enter the customer's status: ";
cin>>status;
if(status != 'P' || 'R')
{
cout<<"\n\nThe customer status code you input does not match one of the choices.\nThe calculations that follow are based on the applicant being a Regular customer."<<endl;
status='R';
}