2
votes
1answer
152 views
A very average puzzle [closed]
This is just a puzzle for your amusement; I don't really need help with it.
What are the best implementations for these methods in Java?
public int average(int[] values) {}
publ …
3
votes
5answers
83 views
A more efficient approach to Verbal arithmetic / Alphametics?
Perhaps most of you know the Send + More = Money. Well, I'm currently learning java and one of the exercises is I have to solve HES + THE = BEST.
Now, so far I can/should use if-f …
0
votes
3answers
31 views
linux script simple arithmetic code
So I'm just working on some simple arithmetic code. Here's what I got:
echo "The number should be 2";
declare -i input added
input= date +%w
let added="input/2"
echo "$added"
…
0
votes
1answer
48 views
Sum values of a loop
hi i have this :
<% for item in @ventas_ocurridas_en_este_periodo do %>
<% @pid = item.producto_id %>
<br/>
Producto: <%= Producto.find_by_id(@pid) %>< …
0
votes
3answers
41 views
MySQL integer unsigned arithmetic problems?
Does MySQL (5.0.45) like to do strange internal typecasts with unsigned maths? I am storing integers unsigned but when selecting basic arithmetic I get outrageous numbers:
mysql& …
0
votes
1answer
29 views
How to do bit-wise zero-filling right shift in Scheme?
According to here, arithmetic-shift will bit-shift left and right. The right shift preserves the sign. Is there any unsigned right-shift operator, which fills the vacated bits with …
0
votes
4answers
65 views
How to conduct arithmetic operations in JQuery?
var price = $('#addprice').val();
var pass = $('#pass').val();
var total = $('#totalprice').attr('value')
var left = $('#leftquota').attr('value')
var balance = …
5
votes
8answers
268 views
How can I check if multiplying two numbers in Java will cause an overflow?
I want to handle the special case where multiplying two numbers together causes an overflow. The code looks something like this:
int a = 20;
long b = 30;
// if a or b are big eno …
3
votes
7answers
125 views
Technique for determining if an integer sequence can be generated without branches?
If you're optimizing for an architecture on which branching is expensive (say the PS3's cell processor), it can be important to be able to determine whether or not you can express …
0
votes
4answers
92 views
Has arbitrary-precision arithmetic affected numerical analysis software?
Has arbitrary-precision arithmetic affected numerical analysis software?
I feel that most numerical analysis software keeps on using the same floats and doubles.
If I'm right, I' …
1
vote
2answers
46 views
Divide large malloc-block into smaller “partitions”
Is there a way to use poiter arithmetic on a large malloc block, so you can assign multiple structs or primitive data types to that area already allocated? I'm writing something li …
6
votes
1answer
191 views
Verifying that C / C++ signed right shift is arithmetic for a particular compiler ?
According to the C / C++ standard (see this link), the >> operator in C and C++ is not necessarily an arithmetic shift for signed numbers. It is up to the compiler implementation …
0
votes
4answers
49 views
How does an environment (e.g. Ruby) handle massive integers?
My integers in Ruby (MRI) refuse to overflow. I've noticed the class change from fixnum to bignum but I'm wondering how this is modeled and what sort of process ruby uses to perfo …
2
votes
9answers
221 views
How do programming languages handle huge number arithmetic
For a computer working with a 64 bit processor, the largest number that it can handle would be 2^64 = 18446744073709551616. How does programming languages, say Java or be it C, C++ …
1
vote
5answers
119 views
Linq Arithemetic Operator combinations
When attemptiing to solve the below assignment :
Using the Arithmetic operators ( +,-,*,/) rearrange four fives to equal the number 1 to 10.
Example : 5/5+5-5 =1 ,5/5+5/ …
