Write a C++ program that uses a fixed-count loop of four. For each pass through the loop, enter the fluid's viscosity and density from the following chart. Your program should then determine the kinematic viscosity for each fluid, using the following formula.
#include <iostream> // for cin and cout
#include <cmath> // for pow if needed
usingnamespace std;
int main() {
return 0;
}
It looks like you are making a program which takes in input from the user for viscosity and density. So what would you need to write to get input for these two?