I have been having a problem with a new class im writing. I have managed to get the class to return a score which I want but I can't implement any characters. Meaning I want the programe to ask you to enter a team name and then the name gets stored in the class but for some reason i cant do it. I have been trying for over a week with no joy.
#include <iostream>
//#include "stdafx.h"
using namespace std;
cout << "Please enter the name of team 1. ";
cin >> team3;
cout << "Team 1 Begins with " << team1.points_for_team1 << " Team 2 Begins with " << team2.points_for_team2 << endl;
system ("pause");
}
Hope you guys could shed any light on where I'm perhaps going wrong?