compute_interest_rate_for_affirm_loan that accepts the following parameters: loan amount, of type int, a positive integer which represents the principal loan amount in cents (Ex: 6700 = $67.00). loan_start_date, of type string, which represents the starting date for the loan, and the starting time period for interest accrual. This value will be passed in the following format %MM/%DD/%YY (ex: 03/05/22). loan_end_date, of type string, which represents the ending date for the loan, and the end of the time period for interest accrual. This value will be passed in the following format %MM/%DD/%YY (ex: 07/10/22). Language Java 8 1 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 import java.io.*; ... class Result { * Complete the 'compute_interest_rate_for_affirm_loan' function below. * *The function is expected to return a DOUBLE. The function accepts following parameters: 1. INTEGER loan amount * 2. INTEGER total_interest_amount * * */ * Autocomplete Ready 3. STRING loan_start_date 4. STRING loan_end_date public static double compute_interest_rate_for_affirm_loan (int loan_amount, int total interest_amount, String loan_start_date, String loan_end_date)

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter7: User-defined Simple Data Types, Namespaces, And The String Type
Section: Chapter Questions
Problem 8PE: Write a program that reads in a line consisting of a students name, Social Security number, user ID,...
icon
Related questions
Question

solve in java

compute_interest_rate_for_affirm_loan that
accepts the following parameters:
loan_amount, of type int, a positive integer
which represents the principal loan amount
in cents (Ex: 6700 = $67.00).
loan_start_date, of type string, which
represents the starting date for the loan, and
the starting time period for interest accrual.
This value will be passed in the
following format %MM/%DD/%YY (ex:
03/05/22).
loan_end_date, of type string, which
represents the ending date for the loan, and
the end of the time period for interest
accrual. This value will be passed in the
following format %MM/%DD/%YY (ex:
07/10/22).
total_interest_amount, of type int, a non-
negative integer which represents the total
interest amount in cents (ex: 450 = $4.50).
You'll be implementing this method to calculate
the interest rates for a given loan of a specified
number of days. The total number of days in the
loan will be the days between loan_start_date
and loan_end_date.
A year is divided into 12 months in the modern-
day Gregorian calendar. The months are either
28, 29, 30, or 31 days long.
The Gregorian calendar consists of the following
12 months:
1. January - 31 days
2. February - 28 days in a common year (we are
ignoring leap years for this problem)
Language Java 8
1 > import java.io.*;
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
class Result {
/*
* Complete the
*
}
...
*
>
* The function is expected to return a DOUBLE.
* The function accepts following parameters:
* 1. INTEGER loan_amount
* 2. INTEGER total_interest_amount
3. STRING loan_start_date
* 4. STRING loan_end_date
*/
Test Results
Ⓡ
29
30
31
32
33
34
35
36
37 public class Solution {...
'compute_interest_rate_for_affirm_loan' function below.
public static double compute_interest_rate_for_affirm_loan(int loan_amount, int
total_interest_amount, String loan_start_date, String loan_end_date) {
return 0.0;
✔ Autocomplete Ready
Custom Input
<
Run Code
Run Tests
D
?
Line: 29 Col: 9
Submit
Transcribed Image Text:compute_interest_rate_for_affirm_loan that accepts the following parameters: loan_amount, of type int, a positive integer which represents the principal loan amount in cents (Ex: 6700 = $67.00). loan_start_date, of type string, which represents the starting date for the loan, and the starting time period for interest accrual. This value will be passed in the following format %MM/%DD/%YY (ex: 03/05/22). loan_end_date, of type string, which represents the ending date for the loan, and the end of the time period for interest accrual. This value will be passed in the following format %MM/%DD/%YY (ex: 07/10/22). total_interest_amount, of type int, a non- negative integer which represents the total interest amount in cents (ex: 450 = $4.50). You'll be implementing this method to calculate the interest rates for a given loan of a specified number of days. The total number of days in the loan will be the days between loan_start_date and loan_end_date. A year is divided into 12 months in the modern- day Gregorian calendar. The months are either 28, 29, 30, or 31 days long. The Gregorian calendar consists of the following 12 months: 1. January - 31 days 2. February - 28 days in a common year (we are ignoring leap years for this problem) Language Java 8 1 > import java.io.*; 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 class Result { /* * Complete the * } ... * > * The function is expected to return a DOUBLE. * The function accepts following parameters: * 1. INTEGER loan_amount * 2. INTEGER total_interest_amount 3. STRING loan_start_date * 4. STRING loan_end_date */ Test Results Ⓡ 29 30 31 32 33 34 35 36 37 public class Solution {... 'compute_interest_rate_for_affirm_loan' function below. public static double compute_interest_rate_for_affirm_loan(int loan_amount, int total_interest_amount, String loan_start_date, String loan_end_date) { return 0.0; ✔ Autocomplete Ready Custom Input < Run Code Run Tests D ? Line: 29 Col: 9 Submit
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Knowledge Booster
Study of Characters
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning