Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

35
votes
6answers
1k views

In Java, is the result of the addition of two chars an int or a char?

When adding 'a' + 'b' it produces 195. I asked on StackOverflow IRC channel they say the output datatype is char. I think it is int and some others do as well. What is the correct answer?
26
votes
11answers
2k views

Why is subtraction faster than addition in Python?

I was optimising some Python code, and tried the following experiment: import time start = time.clock() x = 0 for i in range(10000000): x += 1 end = time.clock() print '+=',end-start start = ...
18
votes
17answers
2k views

Make an application that adds two inputted numbers together

Well, here's another installment of our weekly code-bowling game. As a refresher: Code-Bowling is a challenge for writing the most obscure, unoptimized, horrific and bastardized code possible. ...
10
votes
3answers
148 views

adding the components of an SSE register

I want to add the four components of an SSE register to get a single float. This is how I do it now: float a[4]; _mm_storeu_ps(a, foo128); float x = a[0] + a[1] + a[2] + a[3]; Is there an SSE ...
7
votes
3answers
82 views

Summing XML data that is in two arrays

I am very new to XSL and XML and have, I hope, an easy question. I have an XML file that has two arrays of numbers in them that I need to sum. Here is part of the XML file <?xml version="1.0" ...
5
votes
4answers
176 views

Adding versus ORing performance

I have seen people use addition where a bitwise OR would be more conceptually appropriate, because they believe it is faster. Is this true? If yes, do all modern compilers know this trick?
5
votes
3answers
665 views

Overflow and Carry flags

Is it possible to add two signed 8-bit numbers together and set both the carry and overflow bits?
5
votes
11answers
3k views

What is the best way to add two numbers without using the + operator?

A friend and I are going back and forth with brain-teasers and I have no idea how to solve this one. My assumption is that it's possible with some bitwise operators, but not sure.
4
votes
4answers
238 views

How to implement division by addition?

An interview question. How to implement division by addition? suppose they are all int. My idea Add divisor to itself until it is larger than dividend. Each iteration, keep the sum result before ...
4
votes
6answers
116 views

Are addition and bitwise or the same in this case?

Say I have four 32-bit numbers, defined so that their bits don't overlap, i.e. unsigned long int num0 = 0xFF000000; unsigned long int num1 = 0x00FF0000; unsigned long int num2 = 0x0000FF00; unsigned ...
4
votes
2answers
163 views

How do I add two integers together with Twisted?

I have two integers in my program; let's call them "a" and "b". I would like to add them together and get another integer as a result. These are regular Python int objects. I'm wondering; how do I ...
4
votes
3answers
216 views

Help in double precision addition

I was testing some of my code, in javascript I added .1+.2 and it gives me .30000000000000004 instead of .3 . I don't understand this. But when I added .1+.3 it gives me .4. I googled it and find its ...
4
votes
1answer
246 views

Bitwise saturated addition in C (HW)

I'm working on an assignment and I can't figure out how to implement this. I have to make a function sadd(int x, int y) that returns the numbers added together unless it overflows (then just return ...
4
votes
9answers
247 views

How does unary addition on C pointers work?

I know that the unary operator ++ adds one to a number. However, I find that if I do it on an int pointer, it increments by 4 (the sizeof an int on my system). Why does it do this? For example, the ...
4
votes
2answers
788 views

How to force JS to do math instead of putting two strings together

I need javascript to add 5 to an integer variable, but instead it treats the variable as a string, so it write out the variable, then add 5 onto the end of the "string". How can I force it to do math ...
3
votes
3answers
117 views

javascript Addition creates weird decimal issue [closed]

Possible Duplicate: Elegant workaround for JavaScript floating point number problem Why is it that when adding 2 numbers together using javascript, it will return a crazy number of decimal ...
3
votes
11answers
455 views

Adding numbers in Java

I am trying to add two numbers in Java "2" + "3" But it gives me "23" as an answer. Obviously + isn't doing an addition here. What is the right way to do it? Thanks
3
votes
2answers
452 views

CUDA - Simple matrix addition/sum question

This should be very simple but I could not find an exhaustive answer: I need to perform A+B = C with matrices, where A and B are two matrices of unknown size (they could be 2x2 or 20.000x20.000 as ...
3
votes
3answers
196 views

What's the difference between array_merge and array + array?

A fairly simple question. What's the difference between: $merged = array_merge($array1, $array2); and $merged = $array1 + $array2; ?
3
votes
2answers
150 views

Adding two functions?

I just browsed through "C# in Depth" and stumbled upon the following code: Func<string> stringFunc = () => ""; Func<object> objectFunc = () => new object(); Func<object> ...
3
votes
2answers
1k views

Most efficient way to combine two objects in C#

I have two objects that can be represented as an int, float, bool, or string. I need to perform an addition on these two objects with the results being the same thing c# would produce as a result. For ...
2
votes
2answers
78 views

Adding 2 binary numbers from input

Does anyone know how to make a code that can make java add 2 binary numbers, entered in as binary. such as 1010+10=1100.
2
votes
1answer
82 views

Can't add an IntPtr and an Int

I have this lines in C# Visual Studio 2010: IntPtr a = new IntPtr(10); IntPtr b = a + 10; And it says: Operator '+' cannot be applied to operands of type 'System.IntPtr' and 'int'. MSDN says ...
2
votes
3answers
153 views

C# - Find/Edit/Replace String

I am trying to retrieve data from a file to change it and replace the old data. I have a file that looks something like this: TEXT NEXT_TEXT 10.505 -174.994 0 TEXT NEXT_TEXT 100.005 174.994 ...
2
votes
3answers
147 views

algorithm to simulate multiplication by addition

How to design an algorithm to simulate multiplication by addition. input two integers. they may be zero, positive or negative..
2
votes
3answers
386 views

Lisp — How to add several hexadecimal numbers without base conversion?

Ii would like to know how to add several hexadecimal numbers in lisp without first converting them to another base. How could this be done?
2
votes
3answers
102 views

185.3 + 12.37 = 197.67000000000002? [closed]

Possible Duplicate: Understanding floating point problems This page has a simple alert: alert(185.3 + 12.37); To me, that should equal 197.67 However, in the browsers I've tested ...
2
votes
2answers
419 views

Ruby- Adding/subtracting elements from one array with another array

I do this: a = [1,2,3,4] b = [2,3,4,5] c = b - a put c I get this answer -> [1] I want this answer -> [1,1,1,1] (like matrix addition/subtraction) I tried this: c.each {|e| c[e] = b[e] - ...
2
votes
3answers
178 views

Python OOP __Add__ matrices together (Looping Problem)

class Matrix: def __init__(self, data): self.data = data def __repr__(self): return repr(self.data) def __add__(self, other): data = [] for j in range(len(self.data)): ...
2
votes
3answers
146 views

VB.NET - Want to add together two nullable types - how? (i.e. var1 + var2 where both are nullable and vari1=Nothing, Var2=5 results in Nothing)

I have: Dim nVar1 As Long? Dim nVar2 As Long? Dim nVarSum As Long? nVar1 = Nothing nVar2 = 5 nVarSum = nVar1 + nVar2 I would prefer the result to end with nVarSum being 5, instead of Nothing. ...
2
votes
2answers
52 views

Addition of an integer to a pointer

In following code, #include<stdio.h> int main() { short a[2]={5,10}; short *p=&a[1]; short *dp=&p; printf("%p\n",p); printf("%p\n",p+1); printf("%p\n",dp); ...
2
votes
2answers
1k views

Looping through columns in a .csv files in Python

I want to be able to use Python to open a .csv file like this: 5,26,42,2,1,6,6 and then perform some operation on them like addition. total = 0 with open("file.csv") as csv_file: for row ...
2
votes
5answers
951 views

Binary Addition of 2 values ( there is a catch :D) C# - RESOLVED

hey guys , im doin a final year project but it has come to a dead end as i dont know any way i can perform binary addition in C# what i am trying to do is i have two strings string a= "00001"; /* ...
2
votes
6answers
1k views

Calculate exponents via addition only

We're writing a very simple program to execute on a processor we've built for a class. It doesn't have the capability to multiply or divide. We do however, had support for addition, subtraction, and, ...
2
votes
2answers
470 views

One's complement instead of just a sum of bits

A question in my university homework is why use the one's complement instead of just the sum of bits in a TCP checksum. I can't find it in my book and Google isn't helping. Any chance someone can ...
2
votes
5answers
110 views

SQL Table vs Table Addition

Is it possible to craft a query that adds values within two tables: For example, say you have two tables id value -- ----- a 1 c 2 d 3 f 4 g 5 and id ...
1
vote
2answers
45 views

How to do array addition in a smart way? [closed]

Possible Duplicate: How to sum array members in Ruby? Lets say I have this array @test = [1, 2, 3, 4] Then I want to do: @test[0] + @test[1] + @test[2] + @test[3] Is there not a ...
1
vote
0answers
79 views

Prolog Arithmetic plus

I've stumbled on a rather weird problem (to me). Very easy, I want to an addition between 2 integers. I use the plus clause from swi Now when I do this (I'm calculation something in a graph) ...
1
vote
4answers
42 views

Numeric values rounding down unexpectedly

I have a loop that calculates a couple revenue values then adds them together, like this: $SalesGrowth = $C2012Sales+$C2011Sales; In some cases, this works, and I get the expected, e.g.: 761.9 + ...
1
vote
1answer
80 views

operator+ and move semantics

How is the proper way to implement move semantics with operator+? Similarly to how it works for std::string? I have attempted the following, however I was hoping there was some more elegant and ...
1
vote
2answers
88 views

How to calculate point addition using jacobian coordinate-system over elliptic curves

I'm writing a small project of elliptic curve cryptography, and the program works well when I use affine coordinate system, which means each point is represented by 2 coordinates (x',y'). Now I'm ...
1
vote
3answers
43 views

Addition is not working in JavaScript

I am trying to learn Javascript. Here I am confused with the following code. http://rendera.heroku.com/usercode/eae2b0f40cf503b36ee346f5c511b0e29fc82f9e When I put x+y in the function it is going ...
1
vote
3answers
114 views

Standard deviation of input numbers with JAVA

I am new to this place and in need of serious help. After spending 6 hours trying to figure out this, I am going insane and need help. Here is the question i am assigned. Create the ...
1
vote
2answers
59 views

What happens when we use operators in ruby

As i understand when we add two numbers in ruby a '+' method is called on the current object with parameter as the the next object. >> 2 + 3 => 5 >> 2.+(3) => 5 How are these ...
1
vote
3answers
63 views

Value not being increased after addition statement?

I have two functions where I'm adding random numbers to the total value. The problem is that every time I call the function and print the total, it does not add. If it generates 2 it will say the ...
1
vote
2answers
85 views

Matlab: add vector to matrix

I have a 3XN matrix representing a list of 3D coordinates,something like 33 33 33 33 34 34 34 34 34 35 35 17 18 19 20 16 17 18 19 20 16 17 ...
1
vote
4answers
83 views

How to keep a list static in Python?

Alright, so I have a long list of numbers, like so: q = [3495790.0, 2386479.0, 2398462.0] and so on and so on about 300 times. I want to get another version of this list with all the numbers added ...
1
vote
6answers
100 views

Subtract and add two lists without changing their order in Python

If I have the list [68,31,93,35,10] (all the numbers will be different) and the list [93,0,22,10,99,33,21,9] (again, all the numbers will be different, but may overlap the other list), I need to be ...
1
vote
3answers
129 views

How to improve the efficiency of the standard matrix addition algorithm in c

How to improve the efficiency of the standard matrix addition algorithm. The matrix is represented by using 2D array and is added sequentially.
1
vote
2answers
49 views

Python: Using addition to modify dictionary values

This is my first programming post as well as well my first program so please bear with me. I have a dicionary that is initialized like so: tab = ({'Mike': 0, 'Chad': 15, 'Taylor': 2}) I want ...

1 2 3