CS计算机代考程序代写 #include

#include
using namespace std;
#include

#include “View.h”

void View::showMenu(int& choice)
{
int numOptions = 3;

cout << endl << endl; cout << "What would you like to do:"<< endl; cout << " (1) Compute matches" << endl; cout << " (2) Print animals" << endl; cout << " (3) Print clients" << endl; cout << " (0) Exit" << endl<> choice;

while (choice < 0 || choice > numOptions) {
cout << "Enter your selection: "; cin >> choice;
}

}

void View::printStr(string str)
{
cout << str; } void View::readInt(int& n) { cin >> n;
}

void View::readStr(string& str)
{
cin >> str;
}

Leave a Reply

Your email address will not be published. Required fields are marked *