Page 1 of 1

round - changeable?

PostPosted: Sun Feb 28, 2010 5:50 pm
by Superbeni
Is it possible to change the numbers of a rounded number?
I would need a number rounded to one decimal number:
1.333333 -> 1.3
0.666666 -> 0.6

Is there any (easy) way to do this?

Re: round - changeable?

PostPosted: Sun Feb 28, 2010 6:52 pm
by Bee-Ant
Code: Select all
integer=round(decimal);

Re: round - changeable?

PostPosted: Sat Mar 06, 2010 9:46 am
by Superbeni
I didn´t get it. :?
What should I write instead of decimal? or should I write decimal?
Integer is the variable?

Could you maybe write an example? (not a demo)

Sorry for this late answer, I didn´t had very much time. :?

Re: round - changeable?

PostPosted: Tue Mar 09, 2010 3:52 pm
by Superbeni
Could anyone help, please? :D

Re: round - changeable?

PostPosted: Tue Mar 09, 2010 8:50 pm
by DST
Code: Select all
float roundNumber(float k, int places){
int i;
for(i=1; i<=places; i++){     //inflate the number
k*=10;
}
k=round(k);                       //round
for(i=1; i<=places; i++){     
k/=10;                               //deflate the number
}
return k;
}


Inflate, round, deflate.

Re: round - changeable?

PostPosted: Wed Mar 10, 2010 3:07 pm
by Superbeni
A bit longer but I understood it. :mrgreen:
thanks

Re: round - changeable?

PostPosted: Tue Mar 16, 2010 3:10 pm
by thunderios
Code: Select all
float roundNumber(float k, int places){
    int i;
    k*=pow(10, i);
    k=round(k);                       //round
   
    k/=pow(10,i);                               //deflate the number
    return k;
    }
Might be simpler.