whats wrong with my if statements?



#include <iostream.h>
#include <time.h>
#include <stdlib.h>
#include <string.h>
void main()
{
srand(time(NULL));
int punch = rand() % (5-1+1);
int kick = rand() % (10 - 1 + 1);
int kiblast = rand() % (15-1+1);
int pl = 100;
int epl = 100;
int yen;
int answer;
char goku[5] = "Goku";
char krillyn[10] = "Krillyn";
char piccolo[10] = "Piccolo";
char gohan[6] = "Gohan";
cout<<"Pick a character?\n";
cout<<"1. "<<goku<<endl;
cout<<"2. "<<gohan<<endl;
cout<<"3. "<<krillyn<<endl;
cout<<"4. "<<piccolo<<endl;
cin>>answer;
cin.get();
if (answer == 1)
{
LOOP: cout<<"Main Menu\n";
cout<<"You have selected "<<goku;
cout<<"OPTIONS\n";
cout<<"_________________\n";
cout<<"1. Fight Enemy\n";
cout<<"2. Buy Items\n";
cout<<"3. Buy Moves\n";
cout<<"4. Fight Boss\n";
cout<<"5. Fusion\n";
cout<<"6. Armor\n";
cout<<"7. Spar\n";
cout<<"8. Stats\n";
int answer2;
cin>>answer2;
if (answer2 == 1)
{
//fight sequence
do
{
int goku = 100;
int enemy1 = 100;
cout<<"Attack menu\n";
cout<<"____________\n";
cout<<"1. punch\n";
cout<<"2. kick\n";
cout<<"3. ki blast\n";

int ans;
cin.get();
cin>>ans;
if (ans == 1)
{

epl = epl - punch;

cout<<"You "<<pl<<" enemy "<<epl<<endl;
}
int rands = rand() % (10 - 1 + 1);
pl = pl - rands;
cout << "You "<<pl<<" Enemy "<<epl<<endl;

if (ans == 2)
{
epl = epl - kick;
pl = pl - rands;
cout<<"You "<<pl<<" enemy "<<epl<<endl;

}
else if (ans == 3)
{
epl = epl - kiblast;
pl = pl - rands;
cout<<"You "<<pl<<" enemy "<<epl<<endl;
}

while (pl > 0 && epl > 0);
}
if (answer2== 2);
LOOP2:{
cout<<"1. space pod\n";
cout<<"2. go back to main menu\n";
int answer3;
cin.get();
cin>>answer3;
if (answer3 == 1)
{
cout<<"do you have have 500¥?\n";
char respond[4];
cin.get(respond,4);
cin.get();
if ((strcmp(respond, "yes")==0))
{
cout<<"good job will that be all?\n";
char respond2[5];
cin.get(respond2,5);
cin.get();
if ((strcmp(respond2,"yes")==0))
{
goto LOOP;
}
if ((strcmp(respond2,"no")==0))
{
goto LOOP2;
}
}
else if ((strcmp(respond,"no")==0))
{
goto LOOP2;
}
}
if (answer3 == 2)
{
goto LOOP;
}
}
}
}






}




--------------------Configuration: funC++version - Win32 Debug--------------------
Compiling...
funC++version.cpp
C:\Windows\Desktop\c++\funC++version.cpp(85) : error C2059: syntax error : 'if'
Error executing cl.exe.

funC++version.obj - 1 error(s), 0 warning(s)