C language: two programming and optimization methods; soda drinking

Source: Internet
Author: User

C language: two programming and optimization methods; soda drinking
Method 1: Program:

# Include <stdio. h> int main () {int I = 0; // I indicates money int j = 0; // j indicates empty bottle int sum = 0; // sum total number of soda bottles scanf ("% d", & I); sum = I; j = I; while (j> = 2) {sum = sum + j/2; j = j % 2 + j/2;} printf ("% d \ n", sum); return 0 ;}

 

Method 2: (optimized) Program:
# Include <stdio. h> int main () {int I = 0; // I indicates money int j = 0; // j indicates empty bottle int sum = 0; // sum total number of soda bottles to drink scanf ("% d", & I); sum = 2 * I-1; // 20 bottles, assuming the last empty bottle, the boss borrows one, then you can drink 39 + 1 = 40 bottles // The principle is equivalent to drinking 20 bottles. Ask the boss to borrow 20 empty bottles and pay back after drinking them, drink 2*20 = 40 bottles. // In summary, if the last empty bottle is not lent, you can drink 2 * n-1 bottle printf ("% d \ n", sum ); return 0 ;}

 

Result: 2039 Press any key to continue

Related Article

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.