Question: Please c+ language Online 1 Set A Q1. Write a recursive program to find the GCD of x and y where x,y are positive integers
Please c+ language
Online 1 Set A Q1. Write a recursive program to find the GCD of x and y where x,y are positive integers using the following technique. Write a main function to take the input from the user. For example, to compute gcd(48,18), one proceeds as follows: gcd(48,18)gcd(4818,18)=gcd(30,18)gcd(3018,18)=gcd(12,18)gcd(12,1812)=gcd(12,6)gcd(126,6)=gcd(6,6) So gcd(48,18)=6
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
