Replace the following statement in previous Program
"cout << numerator <<'/' << denominator
<< " = " << double (numerator)/ double (denominator) << endl;"
with the statement
"cout << numerator <<'/' << denominator
<< " = " << numerator/denominator << endl;"
and execute the modified program. Enter the values 12 and 5, and explain why the result is incorrect from the user's viewpoint.