Search
 
SCRIPT & CODE EXAMPLE
 

CPP

gcd

public int HCFOfTwoNumbers(int a, int b)
{
  while (a != 0 && b != 0)
  {
    if (a > b) a %= b;
    else b %= a;
  }
  return a==0?b:a;
}
Comment

gcd in c program

#include <stdio.h>
int main()
{
    int n1, n2, i, gcd;

    printf("Enter two integers: ");
    scanf("%d %d", &n1, &n2);

    for(i=1; i <= n1 && i <= n2; ++i)
    {
        // Checks if i is factor of both integers
        if(n1%i==0 && n2%i==0)
            gcd = i;
    }

    printf("G.C.D of %d and %d is %d", n1, n2, gcd);

    return 0;
}
Comment

gcd algorithm

function gcd(a, b)
    if b = 0
        return a
    else
        return gcd(b, a mod b)
Comment

gcd = 1

import java.util.Scanner;
public class   Euclid {
    static public void main(String[] argh){
        System.out.print("Enter two numbers: ");
        Scanner input = new Scanner(System.in);
        int a = input.nextInt();
        int b = input.nextInt();
        int TEMP = 0 ;
        int GCD = 0;
        int max = a>b?a:b;
        int min = a<b?a:b;
        while(min!=0){
            TEMP=(max%min);
            GCD = min ;
            min = TEMP;
        }
        System.out.print("("+GCD+")");
    }
}

Comment

gcd

int gcd(int a,int b){
    if(b==0) return a;
    return gcd(b,a%b);
}
Comment

gcd

static int gcd(int a, int b)
    {
      if (b == 0)
        return a;
      return gcd(b, a % b); 
    }
     
Comment

gcd

import math

a = 10
b = 8
answer = math.gcd(10, 8)
print(answer)
Comment

gcd

int gcd(int a, int b) {
    while (b) b ^= a ^= b ^= a %= b;
    return a;
}
Comment

gcd

int gcd(int a,int b) {
	while (a&&b) a>b?a%=b:b%=a;
	return a+b;
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: & before function arg in cpp 
Cpp :: hola mundo c++ 
Cpp :: 2d stl array 
Cpp :: unity decompile il2cpp 
Cpp :: hwo to send token on redirection in passport 
Cpp :: codeforces Pangram in c++ 
Cpp :: wap in c++ to understand function template 
Cpp :: pum game in c++ 
Cpp :: qt widget list set selected 
Cpp :: sort sub vector, sort range of vector c++ 
Cpp :: user inptu in cpp 
Cpp :: c++ rainbow text 
Cpp :: qrandomgenerator bounded 
Cpp :: geekforgeeks stacks 
Cpp :: online c++ compiler 
Cpp :: c++ function parameters 
Cpp :: palindrome no example 
Cpp :: how to include a library in arduino 
Cpp :: math in section latex 
Cpp :: c++ handling 
Cpp :: no match for ‘operator=’ (operand types are ‘std::basic_ostream’ and ‘int’) 
C :: docker: Error response from daemon: could not select device driver "" with capabilities: [[gpu]]. 
C :: manifest orientation portrait 
C :: Which of the following are Cetaceans? 
C :: vowel or consonant in c 
C :: reverse integer in c 
C :: fast inverse square root explained 
C :: string compare c 
C :: stdio 
C :: char array to int c 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =