Recursive exercises give any floating point number, and find the smallest integer that converts the fractional part into an integer.

Source: Internet
Author: User

Recursive exercises give any floating point number, and find the smallest integer that converts the fractional part into an integer.

/*************************************** **************************************** ** Copyright (C ), 1988-1999, drvivermonkey. co ., ltd. file name: Author: Driver Monkey Version: Mail: bookworepeng@hotmail.com qq: 196568501 Date: 2014.04.02 Description: recursive exercise given any floating point number, find the minimum integer ******************************* **************************************** * ********/# include <iostream> # include <sstream> # include <fstream> # include <iostream> # include <iomanip> # include <string> # include <memory. h> # include <thread> # include <stdlib. h> # include <math. h> using namespace std; static int fuction (double x, int guess, double pricision); int main () {double x = 1.5; double y = fuction (x, 2, 0.0001); cout <"fuction =" <y <endl; cout <"x * y =" <x * y <endl; return 0 ;} static int fuction (double x, int guess, double pricision) {double y = x * guess; double y_int_part = round (y ); // take the integer part double y_fractional_part = y-y_int_part; // take the fractional part if (fabs (y_fractional_part) <= pricision) {return guess;} int new_guess = guess + 2; // The minimum step for decimal digits to become an integer is 2 fuction (x, new_guess, pricision );}

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.