The balance in my bank account went down $85 in 15 days. How much did it change per day. Use a positive number to represent a gain of money and a negative number to represent a loss of money.
The change in balance is a loss of money, so the change is -85.
The change of -85 occurred in 15 days, so the average change per day is
-85/15
Answer:
int t(int n){
if(n == 1)
return 1;
else
return n*n*t(n-1);
}
Step-by-step explanation:
A recursive function is a function that calls itself.
I am going to give you an example of this algorithm in the C language of programming.
int t(int n){
if(n == 1)
return 1;
else
return n*n*t(n-1);
}
The function is named t. In the else clause, the function calls itself, so it is recursive.
Integers are whole numbers meaning numbers that's aren't fractions, the numbers lower than zero are negative number and they just go backwards.
Answer:
6%
Step-by-step explanation:
393/6550=0.06
0.06=6%