im trying to make this program where you can choose a language between the ones given. But every time i try to run it, no matter the input it give me only english back.
Hi, I think there is confusion on the nature of what a variable is.
The actual name of a variable doesn't mean anything to the program itself (only to the human reading it). For example, you could have called your choice variable int blahblahblah; std::cin >> blahblahblah; and your code would have run the same.
Likewise, you have variables "char e", "char f", etc. These are uninitialized variables, regardless of the name you gave them. These variables don't actually have valid values in them because you never set them.
Instead of declaring variables, character literals can be written using single quotes ('a').
change if (choice == e)
to if (choice == 'e')
and do the same for the other letters.
and get rid of your e,f,g,i,r char variables.
EDIT: And change "int choice;" to "char choice;"
Your choice variable is where you store what the user entered (whether they entered an 'e', 'f', 'g', 'i', etc.).