About 406,000 results
Open links in new tab
  1. GCD of two numbers in PL/SQL - GeeksforGeeks

    Jul 12, 2018 · Given two numbers and task is to find the GCD (Greatest Common Divisor) or HCF (Highest Common Factor) value of the numbers. Examples: Approach is to take two numbers …

  2. GCD of Two Numbers in C - GeeksforGeeks

    Jul 2, 2024 · The GCD of two numbers is the largest positive integer that completely divides both numbers without leaving a remainder. In this article, we will learn to calculate the GCD of two …

  3. GCD of Two Numbers in C (5 Programs & Code) - wscubetech.com

    Learn GCD of Two Numbers in C with 5 programs & detailed code examples. Understand algorithms like Euclidean method & recursion step-by-step.

  4. PLSQL_LogicalPrograms/GCD_TwoNumber.sql at master - GitHub

    The purpose of PL/SQL is to combine database language and procedural programming language. The basic unit in PL/SQL is called a block and is made up of three parts: a declarative part, an …

  5. How to Calculate GCD of two numbers in PL/SQL

    To calculate the Greatest Common Divisor (GCD) of two numbers in PL/SQL, you can use the Euclidean algorithm, which is a common method for finding the GCD of two numbers. Here's …

  6. C Program to Find GCD of two Numbers

    In this example, you will learn to calculate the GCD (Greatest Common Divisor) between two numbers. This page contains different ways to find hcf or gcd in C programming with output …

  7. [Algorithm] - Consecutive Integer checking method to find GCD of two

    Mar 2, 2016 · This algorithm calculates the Greatest common divisor (GCD) of two input numbers. The steps are as follows, step 1: Assign the value of minimum of {m,n} to t. step 2: Divide m by …

  8. C Program to Find HCF (GCD) and LCM of Two Numbers

    This C program calculates Highest Common Factor (HCF) & Least Common Multiple (LCM) of two numbers given by user. HCF is also known as Greatest Common Divisor (GCD). Highest …

  9. C Program Example to find GCD of Two numbers with …

    The Euclidean algorithm is a simple and efficient method to get the Greatest Common Divisor (GCD) of two integer number. The largest number that divides both of the input number …

  10. Program to Find GCD of Two Numbers - Letsfindcourse

    Q. Write a program to find GCD of two numbers. GCD:- GCD stands for Greatest Common Divisor, GCD of two numbers is the largest number that can exactly divide both numbers. It is …

Refresh