int main()
{
int monthnumber;
std::cout << "Please type in your month number : " << std::enld;
std::cin >> monthnumber;
if (monthnumber == 1)
{
std::cout << "January" << std::endl;
}
system("PAUSE");
}
Dont worry about it sirkip, I once spent 20 minutes trying to figure out how to code a complex function that would do something while a conditional was true >->..In my defense I had spent about 16 hours staring at F' it all levels of complex functions before this...