D
denis
What am I Doing incorect? My choice value is 2, but for
some reason cout is not printing the message?
switch (choice)
{
case 1:cout<<"Enter value in Fahrenheit:" ;break;
case 2:cout<<"Enter value in Centigrade:";break;
case 3:cout<<"Thank you for using this program.";break;
default: break;
}
some reason cout is not printing the message?
switch (choice)
{
case 1:cout<<"Enter value in Fahrenheit:" ;break;
case 2:cout<<"Enter value in Centigrade:";break;
case 3:cout<<"Thank you for using this program.";break;
default: break;
}