0% found this document useful (0 votes)
5 views1 page

Recursion Techniques in Java

Uploaded by

nivedha110401
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

Recursion Techniques in Java

Uploaded by

nivedha110401
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

Using Recursion

---------------
Set-1
-----
How to print digitsToWords(int number) for example digitToWords(321) should print
three or two ones using recursion?
Program to reverse a number using recursion in Java?
How to calculate the sum of arithmetic series from 1 to N, using recursion?
How to calculate the power of a number like power(int number, int power) like
power(2, 3) should return 8, using recursion?
How to calculate Greatest Common Division GCD using Euclid's algorithm using
recursion?
Write a Java program to convert Decimal to binary using recursion.
How to calculate the sum of digits using recursion in Java?

You might also like