954,492 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

how to round off using float

i don't know how to make 1.6666667 to 1.6 only.. .

please someone help me. .

please! please! please!

taggz19
Newbie Poster
2 posts since Jul 2009
Reputation Points: 10
Solved Threads: 0
 

You can do these :

1>Well if its just a matter of printing then "%.nf" where n is the number of digits after the "." you want to print in a floating point number.2>If its really about conversion then you can know the IEEE floating point format for your machine and compiler architecture and then mask off the excessive bits by "logical anding" which ofcourse gets you into some troubles as you don't exactly know the number stored there and its stored in
<1bit-signbit><8bit-signed exponent><23bit-mantissa> for single precision 32 bit float format.3>So may be you can do this :

* char num[10];
* sprintf(num,"%1f",);
* Now traverse through the array num[] and get the digits before "." the "." and digits after "." and then convert it into a number.

If there are any other ways even I would like to know. :)

csurfer
Posting Pro
568 posts since Jan 2009
Reputation Points: 485
Solved Threads: 88
 

thanks for the info, but when i enter "%.1f" it results into 1.7 and not 1.6. .

what should i do??

please help me. . .

taggz19
Newbie Poster
2 posts since Jul 2009
Reputation Points: 10
Solved Threads: 0
 

You could do this:

// #include<cstring>
float t=31.4592;
char num[100];
sprintf(num,"%f",t);
p=strchr(num,'.');
if( p!=NULL ) num[p-num+2]=0;
printf("%s\n",num);

or this:

// #include<cmath>
float t=31.4592;
printf("%.1f\n",floor(t*10)/10);
prime1999
Newbie Poster
18 posts since Jul 2009
Reputation Points: 22
Solved Threads: 0
 

if you want to round the number, then you use "setprecision()" or the format specifier "%.f" for "printf()" where is the number of digits you want to round to. E.g., the value 1.66667 rounded to =1 decimal place will be 1.7

but what you really want to do here is truncate. this means just "chopping off" (so to speak) all digits past the desired place will just be thrown out, and the least significant remaining digit will not be rounded.

to truncate a value, then, you need to use the "floor" function (for positive values, see caveat* below). but since this returns only a whole number, you will need to first "shift" the value to be truncated a number of decimal places that you want to truncate, floor the value, then shift them back.

(note my use of the word "shift" here is not a bitwise shift, because we're talking about decimal places, not binary places -- you will have to multiply by powers of 10)

value = 1.66667;
truncValue = value * pow(10,1);  // shifts dec. pt. 1 place right
truncValue = floor(truncValue);
truncValue /= pow(10,1);  // shifts dec. pt. 1 place left

you can replace the '1' with a variable to allow variable truncation.

*caveat: this will not work for negative numbers. example value = -1.666667rounded to 1 decimal point would be -1.7, and truncated to 1 decimal point should be -1.6.

However, if you used "floor" on this negative value, the result would be -1.7. Therefore, negative values need to use the converse function "ceil()" which would give the expected value -1.6.

now you can make a function like so:

double truncate (double value, int places)
{
    if (value>0)
    {
        // do the routine with "floor"
    }
    else 
    {
        // do the routine with "ceil"
    }

    return truncValue;
}
jephthah
Posting Maven
2,587 posts since Feb 2008
Reputation Points: 2,143
Solved Threads: 179
 

The float to ASCII, clip, then ASCII to float is one method.
You're only truncating by one decimal place! Not I said clip not round.

So one method is

f = floor(N * 10.0f) * 0.1f;
wildgoose
Practically a Posting Shark
896 posts since Jun 2009
Reputation Points: 546
Solved Threads: 99
 

Yeah I didn't realise your "caveat" that negative values would be truncated wrongly... but if you want an easier way other than if loops:

// #include<cmath>
float t=31.4592,x;
modf(t*10,&x);
printf("%.1f\n",x/10);
prime1999
Newbie Poster
18 posts since Jul 2009
Reputation Points: 22
Solved Threads: 0
 

use the iomanip header

#include <iomanip.h>
#include  <iostream>

using namespace std;

int main()
{
    cout << "enter two numbers that you want to divide >> ";
    double a;
    double b;
    cin >> a;
    cin >> b;
    cout.precision(2); // only display 2 numbers
    cout << a << " / " << b << "= " << a/b;
    cin.get();
    cin.get();
    return 0;
}


this will give u two number in precision.

kangarooblood
Light Poster
42 posts since Jun 2009
Reputation Points: 6
Solved Threads: 2
 

Look at post #3... the original poster seems to want to truncate the float to 1 dp.

And please close your code tag properly!

prime1999
Newbie Poster
18 posts since Jul 2009
Reputation Points: 22
Solved Threads: 0
 

I think it to not possible to round off 1.666666 to 1.6
the only thing u can do is u can restrict the number of digits u display after floating by
i=1.66666
printf("%0.1f",i);

output
1.6

kdeepak
Newbie Poster
3 posts since Jan 2010
Reputation Points: 7
Solved Threads: 0
 

I think it to not possible to truncate 1.666666 to 1.6
the only thing u can do is u can restrict the number of digits u display after floating by

i=1.66666
printf("%0.1f",i);

output
1.6

kdeepak
Newbie Poster
3 posts since Jan 2010
Reputation Points: 7
Solved Threads: 0
 

first multiply the number by 10
then use ceil() function to round it to integer value
then divide it by 10
u will get wat u want

eg:
int i;
float j=1.6667;
j=j*10; /* 16.677 */
i=ceil(j); /*17*/ i=floor(j);/*16*/
j=i/10; /*1.7*/ j=i/10; /*1.6*/

kdeepak
Newbie Poster
3 posts since Jan 2010
Reputation Points: 7
Solved Threads: 0
 

please.

just.... stop.

jephthah
Posting Maven
2,587 posts since Feb 2008
Reputation Points: 2,143
Solved Threads: 179
 

@kdeepak in the future please make sure you do not reply old dead threads, and if you do make sure you have bullet proof reply not guesses as above.

Thread closed.

peter_budo
Code tags enforcer
Moderator
15,436 posts since Dec 2004
Reputation Points: 2,806
Solved Threads: 902
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You