MCPcopy Create free account
hub / github.com/Manvityagi/PW-Skills-Java-Course-Codes / gcd

Method gcd

Lecture 31 - Recursion PS4 GCD/src/GCD.java:4–7  ·  view source on GitHub ↗
(int x, int y)

Source from the content-addressed store, hash-verified

2
3public class GCD {
4 static int gcd(int x, int y){
5 if(y == 0) return x;
6 return gcd(y, x % y);
7 }
8
9 static int iGCD(int x, int y){
10 while (x % y != 0){

Callers 1

mainMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected