I'm making a poll that has 3 choices and each choice adds 1 vote for that choice but for some reason when I enter a choice and press enter the program stops and wont let the user input any more choices to keep adding to the votes
#include <iostream>
#include <string>
usingnamespace std;
int main ()
{
cout << "What do you think of the PS4\n";
int choice,first,second,third;
cout << "1. The PS4 will be the best system\n2. Xbox will be the better system\n3. I'll stay with what I have\n";
cout << "Please choose of the 3 options\n";
cin >> choice;
while ((choice == '1')||(choice== '2'||choice=='3')) {
if (choice == '1') {
first=choice;
first++;
}
elseif (choice == '2'){
second=choice;
second++;
}
elseif (choice == '3'){
third=choice;
third++;
}
}
}