Birthdate Simulator Complete
- Keshav Batra
- Apr 14, 2023
- 1 min read
I have now completed my birthdate simulator using C++. All I had to do was fix up some problems where the months of April, June, September, and November. I just had to add them into the loop so that it would keep giving the same answer instead of just moving forward when it was shown to be greater than 30.
while (Day > 31 || Day < 1 && Day > 30 || Day < 1 || Month == 2 && Day > 28 || Day < 1 || Month == 4 && Day > 30 || Day < 1 || Month == 6 && Day > 30 || Day < 1 && Day > 30 || Day < 1 || Month == 9 && Day > 30 || Day < 1 && Day > 30 || Day < 1 || Month == 11 && Day > 30 || Day < 1 && Day > 30 || Day < 1);
https://youtu.be/ceuh9LWCr0M April Update
https://youtu.be/QfcYO_KzxOg June Update
https://youtu.be/7RlxMQMIxe8 September Update
https://youtu.be/omvDSLHxplI November Update
Comments