I have been working on a project. I am limited to using a few libraries so any additional library would not be helpful. I am building a project, but I am noticing an extra space after the last number when the calendar is finished. How do I fix this extra spacing issue?
//extracted...
if (day >= 9)
{
std::cout << day;
}
else
std::cout << day << " ";
std::cout << " ";
}
}