plz help me straighten out this code o and if possible can you help me and give me some ideas
__________________________________________________ _
#include <iostream.h>
#include <conio.h>
#include <stdio.h>
using namespace std;
int main()
{
char name [100];
int typeclass
void drawmenu()
cout << "\t\t /************Start Menu***********\ \n";
cout << "\t\t * * \n";
cout << "\t\t * 1.start game * \n";
cout << "\t\t * 2.save game * \n";
cout << "\t\t * 3.load game * \n";
cout << "\t\t * * \n";
cout << "\t\t * * \n";
cout << "\t\t \*******************************/ \n";
}
void main()
{
intchoice=0
while(stillplaying)
}
switch(choice)
{
case 1: cout << "you chose start game! \n";
break
case 2: cout << "you chose save game! \n";
break
case 3: cout << "you chose load game! \n";
break
}
cout << "Please enter you character name \n"
cin.get(name,100,'\n';
cout << "welcome to hades"<<name<<"\n";
cout << "please choose a character class \n";
{
cout << \t\t /***********Character classes***********\ \n";
cout << \t\t * * \n";
cout << \t\t * 1.archer * \n";
cout << \t\t * 2.fighter * \n";
cout << \t\t * 3.magician * \n";
cout << \t\t * * \n";
cout << \t\t \************************************/ \n";
}
int typeclass
case 1: cout << "you chose the archer class \n";
case 2: cout << "you chose the fighter class \n";
case 3: cout << "you chose the magician class \n";
cin >> choice;
cout << "thank you for choosing"<<choice<<"\n";
{
_________________________________________________