Hi. I solved two questions , it's up to you to solve the rest
#include <iostream>
//Function Prototypes
void qFive();
void Questions();
void qSix();
int main()
{
using namespace std;
Questions();
cout << "Press any key to exit;" << endl;
cin.get();
return 0;
}
void Questions()
{...