Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

can someone run this exam Q through php??

  • 13-07-2005 08:22PM
    #1
    Registered Users, Registered Users 2 Posts: 4,002 ✭✭✭


    php is not available at the mo here in the college, so can someone run this through their php please and see what the output is, its a little exam question. I have a fair idea what it'll be, but just to be sure..many thanks..


    <?php

    $cash_on_hand=31;
    $meal=25;
    $tax=10;
    $tip=10;

    while(($cost=restaurant_check($meal, $tax, $tip))<$cash_on_hand) {
    $tip++;
    print "I can afford a tip of $tip% ($cost)\n";

    }

    function restaurant_check($meal, $tax, $tip) {
    $tax_amount=$meal*($tax/100);
    $tip_amount=$meal*($tip/100);
    return $meal+$tax_amount+$tip_amount;
    }

    ?>


Comments

Advertisement