Answer:
$18,570.7425
Step-by-step explanation:
24,000 * 0.95 5 times, this will give you the 5% for 5 years
Answer:
Yes, it is arithmetic with the common difference 2.
Step-by-step explanation:
10-8=2
8-6=2
6-4=2
etc.
#include <stdio.h> #include <stdlib.h>
// Function to perform division (x / y) of two numbers x and y. // without using division operator in the code. int divide(int x, int y)
{ // handle divisibility by 0. if (y == 0)
{ printf("Error!! Divisible by 0"); exit(1);
} // store sign of the result.
int sign = 1; if (x * y < 0)