Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Bank Compare

+2 votes
asked Aug 4, 2018 by anonymous

Bank Compare

Problem Description

There are two banks; Bank A and Bank B. Their interest rates vary. You have received offers from both bank in terms of annual rate of interest, tenure and variations of rate of interest over the entire tenure.

You have to choose the offer which costs you least interest and reject the other.

Do the computation and make a wise choice.

The loan repayment happens at a monthly frequency and Equated Monthly Installment (EMI) is calculated using the formula given below :

EMI = loanAmount * monthlyInterestRate /

( 1 - 1 / (1 + monthlyInterestRate)^(numberOfYears * 12))

Constraints

1 <= P <= 1000000

1 <=T <= 50

1<= N1 <= 30

1<= N2 <= 30

Input Format

First line : P – principal (Loan Amount)

Second line : T – Total Tenure (in years).

Third Line : N1 is number of slabs of interest rates for a given period by Bank A. First slab starts from first year and second slab starts from end of first slab and so on.

Next N1 line will contain the interest rate and their period.

After N1 lines we will receive N2 viz. the number of slabs offered by second bank.

Next N2 lines are number of slabs of interest rates for a given period by Bank B. First slab starts from first year and second slab starts from end of first slab and so on.

The period and rate will be delimited by single white space.

Output

Your decision – either Bank A or Bank B.

Explanation

Example 1

Input

10000

20

3

5 9.5

10 9.6

5 8.5

3

10 6.9

5 8.5

5 7.9

Output

Bank B

Example 2

Input

500000

26

3

13 9.5

3 6.9

10 5.6

3

14 8.5

6 7.4

6 9.6

Output

Bank B

1 Answer

0 votes
answered Aug 9, 2018 by Raju G (370 points)
#include<stdio.h>
#include<math.h>
int main()
{
    int p,t,n,i,EMI1,EMI2,n3,n4,n5;
    float n1[100],n2[100];
    scanf("%d%d%d",&p,&t,&n);
    for(i=0;i<n;i++)
    {
        
        scanf("%d%f",&n3,&n1[i]);
    }
    scanf("%d",&n4);
    for(i=0;i<n4;i++)
    {
        
        scanf("%d%f",&n5,&n2[i]);
    }
  
    EMI1 =p*((n3*n1[i]))/( 1 - 1 /(pow((1 +(n3*n1[i])),(n*12))));
    EMI2 =p*((n5*n2[i]))/( 1 - 1 /(pow((1 +(n5*n2[i])),(n*12))));
    if(EMI1>EMI2)
    {
        printf("bank a");
    }
    else
    {
        printf("bank b");
    }
    return 0;
}
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...