i want to make coding with the end coding results it's show like this :
"""""""""""""""""""""""""""""""""
Enter a date (mm/dd/yy) : 3/6/08
Enter a date (mm/dd/yy) : 5/17/07
Enter a date (mm/dd/yy) : 6/3/07
Enter a date (mm/dd/yy) : 0/0/0
5/17/07 is the earliest date
"""""""""""""""""""""""""""""""
this is example of my coding can someone fix my coding?, so in the end it can launch like the example
a) Your formula for earliest date is incorrect.
b) In the first iteration of your loop, z1, z2 and z3 have no value (not initialized). Set it to an initial value before the loop begins.
c) Don't use system() commands!