Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
5answers
492 views

Why Math.Ceiling returns double?

In C# the method Math.Ceiling returns a double value. Why does it not return int?
10
votes
7answers
648 views

C# Math.Ceiling bug or not?

I do not know why Ceiling behave like in the below image Why is processingFee != Settings.PaymentProcessingFeeInPercentage * prizesSum ? View image at full size
4
votes
2answers
123 views

Excel-like ceiling function in python?

I know about math.ceil and numpy.ceil, but both of them lack of significance parameter. For example in Excel: =Ceiling(210.63, 0.05) -> 210.65 numpy.ceil and math.ceil in other hand: ...
4
votes
3answers
2k views

Get ceiling integer from number in linux (BASH)

How would I do something like: ceiling(N/500) N representing a number. But in a linux bash script
2
votes
3answers
1k views

javascript - ceiling of a dollar amount

So I am adding and subtracting floats in javascript, and I need to know how to always take the ceiling of any number that has more than 3 decimal places. For example: 3.19 = 3.19 3.191 = 3.20 ...
2
votes
3answers
231 views

What’s the Linq to SQL equivalent to CEILING?

How do I do this SELECT CEILING(COUNT(*) / 10) NumberOfPages FROM MyTable in Linq to SQL?
2
votes
3answers
1k views

Fractional Part of the number question

What is a good algorithm to determine the necessary fraction needed to add/sub to the number in order to round it to the nearest integer without using the inbuilt ceiling or floor funcitons? Edit: ...
1
vote
3answers
228 views

.NET: Can you simplify this Math.Ceiling expression

Can you simplify this Math.Ceiling expression decimal total decimal? quantity, multiplier int? days total = (decimal)Math.Ceiling((double)quantity.Value * (double)days.Value * (double)multiplier); ...
1
vote
5answers
559 views

How do I randomly generate a number between 75 - 100%?

I know how to do it between 0 and 100, but I can I set the floor? This is how I do 0 - 100.. int randomNum = (int) Math.ceil(Math.random() * 100);
1
vote
4answers
2k views

Code in PHP for the ceiling function

Anyone has ever programmed a PHP (or perl) function to get the ceiling value Excel style?
0
votes
1answer
103 views

How can I use Math Ceiling RoundUp How to determine even odd number

I need to print data from a DataGridView on both sides of a preprinted form but: Each side has different arrangement for that info. Each side can only hold info from tree rows, so: 1st, 2nd and 3rd ...
0
votes
5answers
228 views

I'm new to python, and trying to program a sales tax button for a calculator

I just started programming in python not long ago, and I'm having trouble figuring out the rounding issue when it comes to tax and money. I can't seem to get decimals to always round up to the ...
0
votes
1answer
66 views

How to group by a price confined to a dynamically generated ceiling?

I have a table of items with several properties but to keep it short, it has property price. I want to group a List<Item> into groups of price ranges. The catch is that the price ranges ...
0
votes
1answer
88 views

mysql double values checking problem

I wanna make a query that fetches only the rows that has 'cost' value grader than zero.The cost column has double data type.When i write a query like that, select cost from xxx where cost>0; it ...
0
votes
3answers
163 views

problem with extending classes

I'm making Braid. I have a class Wall that prevents that an object goes into a wall. Everything with Wall is working. But now I'm trying to make the same with the ceilings. My ceiling class extends ...