PHP implementation of monkey picking peach algorithm code sharing

Source: Internet
Author: User
A monkey picked a bunch of peaches, immediately ate half, but the peach is too delicious, it ate one more, the next day it took the first day of the rest of the peach ate half, and ate one more, so to the tenth morning it only left a peach, asked how many peaches it picked out altogether? This article teaches you how to use PHP code to derive the answer.

Method 1


function Taozi ($i) {if ($i ==10) {   return 1;  } $i = (Taozi ($i + 1) +1) * *; return $i;} echo "Altogether peach has", taozi (1); Echo '  

Method 2


$a =1;for ($i =10; $i >1; $i-) {$a = ($a + 1) * *;} Echo ' altogether picked ', $a, ' a peach '; Echo ' 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.