How can i write a program that computes the Biochemical Oxygen Demand in this equation? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How can i write a program that computes the Biochemical Oxygen Demand in this equation?

BOD = L(1 - 10) index kt, where k = deoxyngenation rate constant, t = time and L = ultimate biological demand. Note use a function subprogram and print BOD for 5 different values of k, t and L.

27th May 2018, 7:34 AM
Felicia Dandy
4 Answers
+ 1
Here you go: #include <iostream> #include <cmath> using namespace std; int BODE(int k, int t, int L){ return pow(L*(-9), k*t); } int main() { int k; int t; int L; for(int i = 0; i < 5; i++){ cout << "What is k? "; cin >> k; cout << k << endl; cout << "What is t? "; cin >> t; cout << t << endl; cout << "What is L? "; cin >> L; cout << L << endl; cout << "BOD: " << BODE(k,t,L); cout << endl << endl; } return 0; }
4th Jul 2018, 6:39 PM
Rain
Rain - avatar
+ 1
That is the code I made. It takes inputs of k t L 5 times. I would recommend reading the code and viewing how I did it. An example of input is: 1 2 3 4 5 6 7 8 9 1 2 3 4 5 6
4th Jul 2018, 6:40 PM
Rain
Rain - avatar
0
What does the term "index" mean? The equation is only: BOW = L (1 - 10)?
3rd Jul 2018, 2:46 PM
Rain
Rain - avatar
0
raise to the power of kt
4th Jul 2018, 2:49 PM
Felicia Dandy