Question
Hi can anyone help me doing this c++ program 1. Write a program named program .cpp . 2. This program should have a main function.
Hi can anyone help me doing this c++ program
1. Write a program named program.cpp. 2. This program should have a main function. 3. This program should have another function named myRoudingFunction and this function should round up or round down a float/double value to an integer value. 4. Rules
For positive values
Round up a value if its fraction part is greater or equal to .5
Round down a value if its fraction part is less than .5
For negative values
Round down a value if its fraction part is greater or equal to .5
Round up a value if its fraction part is less than .5
You are not allowed to use the round function provided by C++. But, you may compare the results obtained by your rounding function and the system provided round function.
5. Examples
0.4 should be rounded down to 0
0.6 should be rounded up to 1
-0.4 should be rounded up to 0
-0.6 should be rounded down to -1
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started