11

while (!SolveProblem())
{
cryCounter++;
If (cryCounter.getDays > dueDate.days)
{
bool cried = tryNotToCry();
if (cried) cryALot();
}
}

Comments
  • 1
    SolveProblem always returns false and DueDate.days is always a negative number. So I just skipped the function and hard coded

    cryALot();
Add Comment