1
vote
4answers
94 views
Haskell dividing num
I'm having an issue I want to learn more about, and how to avoid. I've got this code
len :: (Num r ) => [a] -> r
len [] = 0
len xs = 1 + len ( tail xs )
avg :: (Num t) => [t] -> Double
…
1
vote
5answers
135 views
Division of big numbers
I need some division algorithm which can handle big integers (128-bit).
I've already asked how to do it via bit shifting operators. However, my current implementation seems to ask for a better …
-1
votes
5answers
161 views
Sum and Division example (Python)
>>> sum((1, 2, 3, 4, 5, 6, 7))
28
>>> 28/7
4.0
>>> sum((1,2,3,4,5,6,7,8,9,10,11,12,13,14))
105
>>> 105/7
15.0
>>>
How do I automate this sum and division …
0
votes
1answer
62 views
sparc assembly and the %y register
I am currently working with a sparc computer and I am trying to know if a number is prime or not.
here is a part of the code :
mov 0,%y
mov 3, %l1
nop
nop
nop
…
4
votes
3answers
175 views
Java int division confusing me.
I am doing very simple int division and I am getting odd results.
This code prints 2 as expected:
public static void main(String[] args) {
int i = 200;
int hundNum = i / 100;
…
0
votes
5answers
102 views
SQL Server, division returns zero
Here is the code I'm using in the example:
PRINT @set1
PRINT @set2
SET @weight= @set1 / @set2;
PRINT @weight
Here is the result:
47
638
0
I would like to know why it's returning 0 instead …
3
votes
5answers
232 views
Quick divisibility check in ZX81 BASIC
Since many of the Project Euler problems require you to do a devisibility check for quite a number of times, I've been trying to figure out the fastest way to perform this task in ZX81 BASIC.
So far …
2
votes
7answers
426 views
Find if a num is a power of 2 fast. [closed]
Possible Duplicate:
How to check if a number is a power of 2
What would break if i just checked if the Least Significant Bit? If LSB = 1, false else true?
1
vote
5answers
176 views
Why does this division result in zero?
I was writing this code in C when I encountered the following problem.
#include <stdio.h>
int main()
{
int i=2;
int j=3;
int k,l;
float a,b;
k=i/j*j;
l=j/i*i;
a=i/j*j;
…
0
votes
1answer
82 views
Nonrestoring division for unsigned binary
I have tried to look online for a way to do a non-restoring division, but the explanation has still left me quite clueless.
dividend = 0100 0011 1100 0000
quotient = 0110 0010
divisor is not given
…
3
votes
3answers
150 views
simple question about ‘//’ in python
I saw this in someone's code:
y = img_index // num_images
where img_index is a running index and num_images is 3.
when I mess around with '//' in ipython, it seems to act just like a division sign …
1
vote
1answer
219 views
What is the logic behind Fourier division algorithm?
from Wikipedia: fourier division.
Here is a screenshot of the same:
(view in full-resolution)
What is the logic behind this algorithm?
I know it can be used to divide very large numbers, but how …
6
votes
8answers
365 views
What does the /= operator in C# do?
What does the /= operator in C# do and when is it used?
1
vote
2answers
174 views
Python integer division yields float
Python 3.1 (r31:73574, Jun 26 2009, 20:21:35) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> 2/2
1.0
Is this intended? I …
0
votes
5answers
269 views
how to divide my asp.net web page into 2 webpages?
Hi all!
I am writing a webPage using asp.net and c#.
I want to divide my webpage into 2 columns such as in one I will have buttons that change the view in the other column, without "stepping on" the …
