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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!