Ok Im trying to have the program end when the person enters "done" on either input1 or input2 and its still requiring the person to enter "done" and "done" on both input1 and input2 in order for the program to end.
run the next sequence of code if input1 is not equal to "done" and input2 is not equal to "done"
append biology_flash with a new line
request a line of input from the user, and place it into input1
request a line of input from the user, and place it into input2
append biology_flash with a pretty formatted input1 and input2
return to beginning of this loop and recheck the paramaters
You'll want a conditional statement that checks the result of the user's input right after you receive it. If the input is something that should kill your loop, use the break(); statement to break out of the loop.
On line 8 you're using the disjunctive OR so either input1 does not equal done OR input2 does not equal done.
Is that what you wanted or do you want to make sure that both of them do not equal "done"?
If it's the latter case you need to use the conjunction AND operator.