Tagged Questions

3
votes
3answers
567 views

How to ceil, floor and round bcmath numbers?

I need to mimic the exact functionality of the ceil(), floor() and round() functions on bcmath numbers, I've already found a very similar question but unfortunately the answer provided isn't good ...
0
votes
3answers
539 views

calculations in objective-c not returning the correct value

Please check out this piece of code, more specifically the hourStep calculations. int h = [[timeArray objectAtIndex:0] intValue]; int m = [[timeArray objectAtIndex:1] intValue]; int s = [[timeArray ...
0
votes
2answers
292 views

decimal values in pl/sql

How to display a value as follows in oracle: 99.99 as 99.9900, 99.9 as 99.9000, 9.99 as 9.9900, 99 as 99.0000 All cases should be satisfied.. Please help...