How to write a simple Java program that finds the greatest common ... Here is the question: "Write a method named gcd that accepts two integers as ... A recursive method would be: static int gcd(int a, int b) { if(a == 0 || b == 0) return ...