Using Greek letters

Sep 22, 2014 at 1:38pm
What is the easiest way of use Greek letters as variables and display them using cout?

Thank you.

Sep 22, 2014 at 1:46pm
pseudo code

if(char == '5')
{
cout << 'V' << endl;
}
Last edited on Sep 22, 2014 at 9:50pm
Sep 22, 2014 at 2:16pm
@ novellof: 5 is 'V', 10 is 'X'.

@ OP: The font face for the console is an attribute of the OS. So you'll need to tell the OS that you want to change it. For Windows the function is "SetConsoleOutputCP()": http://msdn.microsoft.com/en-us/library/windows/desktop/ms686036(v=vs.85).aspx
Sep 22, 2014 at 9:50pm
lel imma make a change to my code den
Topic archived. No new replies allowed.