My Sign function is not displaying correctly. Could use all the help I can get.
//Ask the user to enter a number.
//Then tell the user whether the number is positive or negative and whether the number is even or odd.
//Note that 0 is considered to be even and positive.
//Your program should use two functions beside main and should include input validation.
//After your program has processed a single number, it should ask the user if he wants to try another number.
//If the user answers yes (y), your program should repeat. If the user answers no (n) your program should end.
#include <iostream>
using namespace std;
void GetNum (int& num1);
string Sign (int);
int main()
{
int num1; // Hold for number entered by user
char loopContinue; // Hold Y/N response to continue loop
string even, odd, neg, pos;
do { //Loop until user exits
GetNum(num1);
string Sign();
do {
// Ask user if they want to continue
cout << "Do you want to continue? (Y/N) ";
cin >> loopContinue;
cin.ignore(100, '\n');
loopContinue = toupper(loopContinue);