top of page
Search

Birthdate Simulator Complete

  • Writer: Keshav Batra
    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);



 
 
 

Comments


bottom of page