Tagged Questions
The modulus tag has no wiki summary.
12
votes
11answers
2k views
How does java do modulus calculations with negative numbers?
Am I doing modulus wrong? Because in Java -13 % 64 is supposed to evaluate to -13 but I get 51.
11
votes
3answers
249 views
Is there a standard Cyclic Integer Class in C++?
I have a problem that is quite common in the code that I am writing at the moment whereby I want to have an integer that can only exist inside a certain range where the range is [start, end). ...
8
votes
4answers
243 views
Sorting a list alphabetically with a modulus
I don't have any trouble grabbing a list of elements and sorting them alphabetically, but I'm having difficulty understanding how to do it with a modulus.
### UPDATE ###
Here's the code working 'my ...
6
votes
1answer
164 views
Why does the modulus operator behave differently in Perl and PHP?
I've this PHP function which does not work for negative numbers:
function isOdd($num)
{
return $num % 2 == 1;
}
but it works for positive number.
I have this Perl routine which does the ...
6
votes
6answers
442 views
How can this very long if-statement be simplified?
How can this if-statement be simplified? It makes a plus sign:
http://i.stack.imgur.com/PtHO1.png
If the statement is completed, then a block is set at the x and y coordinates.
for y in ...
5
votes
2answers
70 views
unsigned overflow with modulus operator in C
i encountered a bug in some c code i wrote, and while it was relatively easy to fix, i want to be able to understand the issue underlying it better. essentially what happened is i had two unsigned ...
5
votes
6answers
185 views
Is there a reason some languages allow a negative modulus?
I am curious about these languages (Java, C ...) which ignore mathematical definition of modulus operation.
What is the point of returning negative values in a module operation (that, by definition, ...
5
votes
4answers
112 views
Modulus power of big numbers
I am trying to implement the SAFER+ algorithm. The algorithm requires finding the modulus of a power function as follows:
pow(45, x) mod 257
The variable x is a byte, and thus can range from 0 to ...
5
votes
5answers
105 views
Java Modulus - Doesn't Work
I know this will seem like a really stupid question, but I just don't get why this isn't working... This:
System.out.println(5 % .10);
And it's returning:
0.09999999999999973
I really have NO ...
5
votes
2answers
115 views
Why is modulus defined the way it is in programming languages
I'm not asking about the definition but rather why the language creators chose to define modulus with asymmetric behavior in C++. (I think Java too)
Suppose I want to find the least number greater ...
5
votes
5answers
1k views
Find multiples of a number in PHP
Hay i need help.
I want to find all muliples of a number in PHP.
I'm using something like this
if($count != 20 )
to work out if $count is not equal to 20.
but i also need this script to check if ...
4
votes
2answers
49 views
XSLT mod check for large numbers
I'm trying to do a modulus 11 check in XSLT 1.0 for a 17 digit number. However, it always seems to give the wrong output.
The only information I've been able to find about this, was in this post, ...
4
votes
3answers
176 views
How to calculate modulus of the form (a*b)%c?
How to calculate modulus of the form (a*b)%c?
i want to calculate modulus of multiplication of two int numbers where they are almost in the stage of overflow...
here c is also int
4
votes
3answers
589 views
What is the modulo operator for longs in Java?
How do I find the modulo (%) of two long values in Java? My code says 'Integer number too large' followed by the number I'm trying to mod. I tried casting it to a long but it didn't work. Do I have to ...
4
votes
1answer
116 views
Strange bug in this time calculation script?
Basically this script will subtract StartTime from EndTime, using a jQuery plugin the html form is populated with Start and End Time in the format HH:MM, an input field is populated with the result, ...
3
votes
3answers
138 views
Floating point comparison in while loop with modulus
I would like some advise on how to optimise the following while loop:
double minor_interval = 0.1;
double major_interval = 1.0;
double start = 0.0;
double finish = 10.0;
...
3
votes
4answers
170 views
fast increase number to be mod 16 in C
what is the best way to to get the closest, non-smaller number that is divisible by 16?
the method I came up with doesn't look very elegant or fast
int non_smaller_int_divisible_by_16(int x)
{
...
3
votes
3answers
179 views
Why is a modulo operator (%) result implicitly cast to the left side rather than the right side in C#?
Take the following code:
long longInteger = 42;
int normalInteger = 23;
object rem = longInteger % normalInteger;
If rem is the remainder of longInteger / normalInteger, shouldn't the remainder ...
3
votes
3answers
973 views
Modular Exponentiation in Java
I need a way to calculate:
(g^u * y^v) mod p
in Java.
I've found this algorithm for calculating (g^u) mod p:
int modulo(int a,int b,int c) {
long x=1
long y=a;
while(b > 0){
...
2
votes
2answers
57 views
How do I effectively use the Modulus Operator in Java
I am doing a college assignment in Java that deals with currency. For that I am advised to use ints instead of doubles and then later convert it to a dollar value when I print out the statement.
...
2
votes
2answers
29 views
Xpath Cast node to number for mod
I have nodes that contain numbers that I would like to cast to a number and use mod. For example:
<item>
<num>1</num>
</item>
<item>
<num>2</num>
...
2
votes
3answers
145 views
Why does Java's % operator give different results than my calculator for a negative dividend?
How come on a calculator -1 mod 26 = 25, but in C or Java -1 % 26 == -1. I need a program which solves it like the calculator. Is there a difference between the two?
2
votes
2answers
124 views
Floating point modulus problem
I'm having a problem with modulus on a floating point number in Python. This code:
...
print '(' + repr(olddir) + ' + ' + repr(self.colsize) + ') % (math.pi*2) = ' + repr((olddir+self.colsize)
...
...
2
votes
3answers
482 views
deciding if a number is perfect or prime
the problem is :
"Write a function to find out if a number is a prime or perfect number."
so far i have worked on the perfect part first and this is what i have:
#include <iostream>
using ...
2
votes
1answer
516 views
Best way to make Java's modulus behave like it should with negative numbers?
In java when you do
a % b
If a is negative, it will return a negative result, instead of wrapping around to b like it should. What's the best way to fix this? Only way I can think is
a < 0 ? b ...
2
votes
4answers
383 views
How is -13 % 64 = -13 in PHP?
Derived from this question : (Java) How is -13 % 64 = 51?
Anywhere to force PHP to return positive 51?
update
Looking for a configuration setting to fix, instead hard-guessing
Or other math ...
2
votes
3answers
115 views
PHP echo in rows of three?
I am attempting to show data in rows of three like this (notice the number of items will not always be even):
abcd defg hijk
lmno pqrs tuvw
xyz1 2345 6789
1011 1213
I am struggling to get the ...
2
votes
4answers
1k views
Floating point numbers and JavaScript modulus operator
Why does 49.90 % 0.10 in JavaScript return 0.09999999999999581? I expected it to be 0.
EDIT:
Ok, I didn't know all this stuff about floating points. Thanks. My lecturers were slacking, it seems.
2
votes
1answer
41 views
Is there a way to optimize reducing many numbers to the same modulus
I am writing a program to do integer factorization and have to reduce a series of numbers to a given modulus. Both the number and the modulus are bigints, say 50 to 100 digits. The number changes ...
2
votes
3answers
327 views
Modulus operator changes
$5.6/4 in C++03 states- "If both
operands are nonnegative then the
remainder is nonnegative;if not, the
sign of the remainder is
implementation-defined74).
where Note 74 is
According ...
2
votes
4answers
656 views
Modulus with doubles in Java
How do you deal with Java's weird behaviour with the modulus operator when using doubles?
For example, you would expect the result of 3.9 - (3.9 % 0.1) to be 3.9 (and indeed, Google says I'm not ...
1
vote
3answers
95 views
Equivalent of modulus (math function) in C?
I have a piece of code where I see a warning saying
I am doing a comparison between signed and unsigned number .
Something like int <= CONSTANT/sizeof(expression)
What is the best way to correct ...
1
vote
4answers
108 views
If-construct advice needed
I have a for loop in which I placed several if statements. The objective of these conditionals is to check divisibility of a number and then output a string if the number is divisible by 3. If the ...
1
vote
4answers
70 views
In java, I want to do 102%100 and get the remainder as 02 and not as 2.. How do i do that?
In java, I want to do 102%100 and get the remainder as 02 and not as 2.. How do i do that?
int a = (102%100);
a returns 2 and not 02.. I want to get 02..
because originally, it's supposed to be ...
1
vote
1answer
63 views
Fastest way to calculate modulus in a large list of numbers
I am trying to write a c++ program to find all numbers with a certain range say (1 till 3 billion) that are perfectly divisible by a number say N. I was wondering if I could get pointers to do this as ...
1
vote
1answer
74 views
Is it safe to pass the modulus of RSA key through Java Socket connection without encryption?
I'm building a server application in Java that servers clients which are built in Flash using AS3. The as3crypto library needs the modulus of the RSA key in order to do the encryption, so I was ...
1
vote
1answer
99 views
Bitwise modulus computation
Given two numbers a and b where b is of form 2k where k is unknown.What would be the efficient way of computing a%b using bitwise operator.
1
vote
2answers
522 views
efficient way to divide ignoring rest
there are 2 ways i found to get a whole number from a division in c++
question is which way is more efficient (more speedy)
first way:
Quotient = value1 / value2; // normal division haveing ...
1
vote
5answers
145 views
Using Python Modulo Operator to Sort List
I've been working on the Project Euler problems to try and learn python and I wrote a solution to the second problem (find the sum of even-valued terms in the Fibonacci sequence that do not exceed ...
1
vote
2answers
74 views
How can I insert a new table row into every other row in an existing table?
Ok I have a sqlite db, that has roughly 100 rows. It is kind of a strange thing that I'm trying to do, but I need to insert a new row between each of the existing rows.
I have been trying to use the ...
1
vote
2answers
292 views
Split down a number in seconds to days, hours, minutes, and seconds?
I've heard that it's possible to accomplish this using the modulus % operator present in most programming languages. The real question is, how? I'm unfamiliar with how modulus works, so I've had ...
1
vote
3answers
188 views
PHP foreach loop help
Hoping someone can help me,
I have array of images on my website, it looks similar to this,
$usp = array('/images/usp1.jpg',
'/images/usp2.jpg',
'/images/usp3.jpg',
...
1
vote
3answers
296 views
How to get the Modulus in LISP
I am learning LISP right now and I haven't found anything on how to get the modulus in LISP. Is there someway to get it inside of a function? I know other languages like Java use % in order to find ...
1
vote
6answers
155 views
Simple Java Modulus Question
I have the following code:
for(int i=0;i<=100;i++) {
if(i % 11) {
System.out.println(i);
}
}
I just want the code to print the number if it's ...
1
vote
0answers
289 views
NSString encryption with modulus & exponent values of a Public Key in Objective C
I am quite new to Objective C development and came through the following problem:
I have the modulus and exponent values of a public key and need to encrypt an NSString value (password) with these ...
1
vote
1answer
273 views
OpenCL Alternative Modulo Uses, Advice
There is this simple function which I have used with C++ in the past to simulate simple forms of tessellation. The function takes a number and a divisor. The divisor must be (a power of two - 1) and n ...
1
vote
2answers
234 views
C++ modulus small program issue
I'm trying to write a very simple program in C++ that finds the modulus of two numbers as follows:
#include <iostream>
using namespace std;
int n;
int d;
int modulus;
int main()
{
...
1
vote
3answers
653 views
Using javascript modulus to iterate through text slider with for loop
I'm new to jQuery and stack overflow, so I'll try to be specific, but please bear with me. I'm trying to create a text slider with associated links from scratch, using modulus to iterate through the ...
1
vote
4answers
390 views
select row if the “value” % 2 = 1. MOD()
There is a column in options that hold an integer. I want to select the row only if that value % 2 = 1.
I know this can be done in 2 queries but is it possible to do it in 1?
1
vote
3answers
2k views
Using mod operator in iOS app
I have an NSTimeInterval that is stored as a double. I would like to get the amount of minutes that are inide of the second value using the % operator.
minutes = secondValue % 60;
where minutes is ...