#include <iostream>
using namespace std;
int main()
{
double salary;
int duration_employed;
cout<<"\nEnter salary per year: ";
cin>>salary;
cout<<"\nEnter duration that the customer been employed at his or her current job: ";
cin>>duration_employed;
if (salary==30000 && duration_employed>=2){
cout<<"\nThe customer qualifies for a loan";
}
else
cout<<"\nThe does not customer qualifies for a loan";
return 0;
}
Comments
Leave a comment