Tagged Questions
0
votes
0answers
95 views
BigIntegers, gcd , modulus inverse to find public key
So, Im using java to find the public key of a RSA password. Right now Im unsure what I'm doing and also if it's correct.
I have this information for the public key.
C = 5449089907
n = p*q = ...
1
vote
2answers
134 views
Method must return int
I am writing a program that uses Euclids algorithm of GCD(a, b) = GCD(b, r) r = a%b. I wrote a method that should return an integer for the main method to spit out, yet when I call for it to do this ...
-1
votes
1answer
36 views
Can someone help figure out what my variable needs to be initialized to while using Euclid's GCD? [closed]
I'm transferring my Euclid GCD program into a method for an assignment. Yes this is rather basic, but one problem keeps occurring and for the life of my partners and I can't figure it out. This is our ...
-1
votes
3answers
96 views
Can't compile code for greatest common divisor? [closed]
I am having trouble compiling my code, specifically in the main program where I call "gcd();" What should I be putting in the parentheses? Thank you.
import java.util.Scanner;
public class gcd {
...
2
votes
3answers
3k views
How to write a simple Java program that finds the greatest common divisor between two numbers?
Here is the question:
"Write a method named gcd that accepts two integers as parameters and returns the greatest common divisor of the two numbers. The greatest common divisor (GCD) of two integers a ...
-1
votes
2answers
660 views
How to find the GCD of three numbers within a single method
I've got to ensure that the GCD between 3 numbers is no greater than 1.
Here's the code I have so far for the method:
private int greatestCommonFactor(int a, int b, int c)
{
for(int n = 0; n ...
0
votes
1answer
217 views
Java Greatest Common Divisor using a GUI Interface - Trouble With Int/String/Calculations
I am trying to create a greatest common divisor calculator. I had to create a GUI Interface for this project, and I think I did so correctly, however I can't test it because I am having an issue with ...
0
votes
4answers
916 views
How to use a value returned in a different class?
This is probably a very simple question. Say I had a class that computed the gcd, called Gcdcomp. The code in that class all works. When i refer to it in my main block of code, I say..
...
0
votes
4answers
620 views
Java modulo operator and GCD
Why does this code give me an answer of 25?
public int findGcd() {
int num = this.num;
int den = this.den;
while (den != 0) {
int t = den;
den = num % den;
num = ...
6
votes
3answers
2k views
How does the Euclidean Algorithm work?
I just found this algorithm to compute the greatest common divisor in my lecture notes:
public static int gcd( int a, int b ) {
while (b != 0) {
final int r = a % b;
a = b;
...
1
vote
4answers
431 views
Finding 2 or more numbers having the given number as GCF
I don't want to find the GCF of given numbers. I use Euclidean for that. I want to generate a series of numbers having a given GCF. For example if I choose 4, I should get something like 100, 72 or 4, ...
14
votes
5answers
15k views
Java: get greatest common divisor
I have seen that such a function exists for BigInteger, i.e. BigInteger#gcd. Are there other functions in Java which also works for other types (int, long or Integer)? It seems this would make sense ...
