iostream should be in angle brackets like <iostream>
void main() should be int main()
system("pause") is not recommended to keep the screen open. cin.get() is an improvement for a variety of reasons that you will become familiar with in time, but its not the only alternative.
line 4: usingnamespace std should be avoided
line 6: should be int main()
line 8: see below about goto
line 23: return 0; //return an int
line 19: use toupper function to avoid testing the variable twice
line 20: goto is really really bad, always use loops or functions