/***************************************************************************** * Determines eligibility for a loan from a fake bank. * * Inputed: income, assets, liabilities. * * Outputed: (A statement concluding if applicant is eligible). * * Written: October 5, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Program 19 //05OCT01 #include #include #include int main() { //variable declaration double income=0, assets=0, liabilities=0; char flag='f'; //user instructions and user input cout<<"This program computes the eligibility of"<>income; cout<<" "<>assets; cout<<" "<>liabilities; //cal code if ((income>=25000 || assets>=100000)&& liabilities<50000) { flag='t'; } else { flag='f'; } if (flag=='t') { cout<<"APPLICANT ELIGIBLE FOR CREDIT"<