Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class GCD{
- public static void main(String[] args)
- {
- System.out.println(gcd(30,6));
- }
- public static long gcd ( long a, long b )
- {
- if (b == 0 )
- return a;
- else
- return gcd ( b, a%b );
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement