i was wondering how to make a person to chose beween two things with the if statment? for example convtering to celsius or converting to fahrenheit.
would this work?
void FahrenheittoCelcius
void CelciustoFahrenheit
int main()
{
int personchoice;
if (personchoice == 1)
{
void FahrenheittoCelcius;
}
else
void CelciustoFahrenheit;
return 0;
}