Answer: B I think I hope it helps
Step-by-step explanation:
Answer:
k = -23
Step-by-step explanation:
-14=k+9
Subtract 9 from each side
-14-9 = k+9-9
-23 = k
The function that takes three decimal numbers as inputs and finds the sum of those inputs and returns the sum has been given below
What is programming?
Program is the set of instructions given to the computer so that the computer can execute those instructions. The act of writing program is called programming.
The program has been shown below
#include<stdio.h>
using namespace std;
int main()
{
double n1, n2, n3;
double s;
printf("Enter first numbers");
scanf(%lf, &n1);
printf("Enter second numbers");
scanf(%lf, &n2);
printf("Enter third numbers");
scanf(%lf, &n3);
s = n1 + n2 + n3;
printf("Sum = %f", s);
return 0;
}
To learn more about programming refer to the link-
brainly.com/question/23275071
#SPJ4
Answer:
8
Step-by-step explanation:
We know that in 5 days they have travelled 2045 miles. This means that their per day average for travel is 2045/5=409 miles per day.
Now the distance left is 3272-2045=1227 miles.
And if we divide the average miles with the miles left, it gives us= 1227/409
=3
So, the total time taken for travel will be= 5+3=8 days
I guess this is the way to do it.