Using the code provided and the explanation of the project cansomeone help me add these things? Please and thank you!
#include <iostream>
using namespace std;
//funtion prototype call by reference
void getInput(int &I, int &R);
void calculateVoltage(int &I, int &R, int&V);
void printInfo(int I, int R, int V);
int main() {
//variable declaration
int I, R, V;
char op;
//while loop to continuetill user enters n or other key
do {
getInput(I, R);
calculateVoltage(I, R, V);
printInfo(I, R, V);
cout << endl << “Continue? (y/n):
OR
OR