#include <iostream>
usingnamespace std;
int main()
{
int Coffee=0,
Tea=0,
Coke=0,
Orange_Juice=0,
choice,
p=2;
cout << "1.Coffee 2.Tea 3.Coke 4.Orange Juice" <<endl;
cout << " "<<endl;
cout << "Please input the favorite bevarage of person #1: Choose 1,2,3, or 4 from the above menu or -1 to exit the program"<<endl;
cin >> choice;
while (choice != (-1))
{
cout << "Please input the favorite bevarage of person #"<<p<<": Choose 1,2,3, or 4 from the above menu or -1 to exit the program"<<endl;
cin >> choice;
p++;
if (choice=1)
{
Coffee++;
}
}
}