Java Classic Programming question 50-way 17

Source: Internet
Author: User

Monkey Eat Peach Problem: The first day the monkey took off a number of peaches, immediately ate half, not enjoyable, and ate one more, the next morning, the remaining peaches eaten half, but also eat one more. Every morning after eating the rest of the day half of the zero one. By the 10th morning when I wanted to eat again, there was only one peach left. Ask how many peaches were picked on the first day.

public class Example17 {
public static void Main (string[] args) {
int sum = Peach (1);
System.out.println ("First day of total pick up" + sum + "peach");
}

public static int Peach (Int. day) {
if (day = = 10) {
return 1;
} else {
Return (Peach (day + 1) + 1) * 2;
}

}
}

Java Classic Programming question 50-way 17

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.