Tagged Questions

0
votes
6answers
174 views

Which languages have integers with limit and which without limit? [closed]

I know that Python have integers without limit and C integers with limit. Which other languages fall in this two categories?
3
votes
3answers
77 views

Calculations of ranges of numbers in PHP

Hi, and first of all, thank you for taking the time to read my question. I am trying to write a script, and I've come across an issue which I am finding hard to solve. I am working with a pair of …
3
votes
4answers
183 views

multiplication of large numbers, how to catch overflow

I am looking for an efficient (optionally standard, elegant and easy to implement) solution to multiply relatively large numbers,and store the result into one or several integers : Let say I have two …
1
vote
4answers
138 views

How to handle Facebooks new UID sizes?

I've been working a little bit on a Facebook application, but when I registered a new user to test the friend interaction the new user got a uid (100000XXXXXXXXX) that seems to big for php to handle. …
0
votes
3answers
91 views

Negative integers to percentage

I have a lot of files with data to convert to percentages using basic math functions: <param id="1" name="otb" value="0.160"/> <param id="2" name="blm" value="-0.210"/> <param id="3" …
0
votes
1answer
35 views

The right way in SQL to deal with a difference between no value and a zero value in an INT datatype field

Hello, I was having issues with an INT field where there may be no value, a zero value, or an integer above zero and since SELECT foo FROM bar where foo = '' evaluates identically to SELECT foo …
1
vote
3answers
167 views

Sending int through socket in Java

What is the best possible way to send an int through a socket in Java? Right now I'm looking at sockout.write((byte)( length >> 24 )); sockout.write((byte)( (length << 8) >> 24 )); …
7
votes
4answers
337 views

Multiples of 10,100,1000,… C#

Hi.. I want an integer to be multiples of 10,100,1000 and so on... For eg double val = 35 then I want int 40 val = 357 then I want int val = 400 val = 245,567 then I want int val = 300,000 val = …
0
votes
9answers
397 views

Convert String containing several numbers into integers

I realize that this question may have been asked several times in the past, but I am going to continue regardless. I have a program that is going to get a string of numbers from keyboard input. The …
0
votes
6answers
420 views

How can I remove the leading zeroes from an integer generated by a loop and store it as an array?

I have a for loop generating integers. For instance: for (int i=300; i>200; i--) {(somefunction)*i=n; cout<<n; } This produces an output on the screen like this: …
2
votes
5answers
493 views

How do languages such as Python overcome C’s Integral data limits?

While doing some random experimentation with a factorial program in C, Python and Scheme. I came across this fact: In C, using 'unsigned long long' data type, the largest factorial I can print is of …
0
votes
7answers
387 views

Parsing a string in C++

Hi, I'm trying to make a constructor for a graph class that accepts a string as a parameter and uses it to build the graph. The string is formatted as follows: |vertex list|Edges list| e.g. …
1
vote
2answers
224 views

How are compilers’ integers put to memory and processed in the CPU?

I got the question in the interview. I had a difficulty in answering it. I was not sure where I should start. Finally, I discussed how the question is related to compilers and to their construction. …
197
votes
81answers
12k views

Interview question: f(f(n)) == -n

A question I got on my last interview: Design a function f, such that: f(f(n)) == -n Where n is a 32 bit signed integer; you can't use complex numbers arithmetic. If you can't design …
3
votes
8answers
587 views

Clean, efficient algorithm for wrapping integers in C++

/** * Returns a number between kLowerBound and kUpperBound * e.g.: Wrap(-1, 0, 4); // Returns 4 * e.g.: Wrap(5, 0, 4); // Returns 0 */ int Wrap(int const kX, int const kLowerBound, int …

1 2 next
15 30 50 per page