-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pallindrome number using recursion java #2752
Pallindrome number using recursion java #2752
Comments
hii can i contribute to ur problem |
i raised this issue no one assigned me.. |
please assign this issue to me please @tarunsinghofficial |
assign me class GFG static int rev(int n, int temp)
} public static void main (String[] args)
} |
Hiii could u help me with hackatober.. I don't know how to contribute
…On Sat, 21 Oct, 2023, 11:07 pm Abhinav Tripathi, ***@***.***> wrote:
assign me
CODE:
import java.io.*;
class GFG
{
static int rev(int n, int temp)
{
if (n == 0)
return temp;
temp = (temp * 10) + (n % 10);
return rev(n / 10, temp);
}
public static void main (String[] args)
{
int n = 121;
int temp = rev(n, 0);
if (temp == n)
System.out.println("yes");
else
System.out.println("no" );
}
}
—
Reply to this email directly, view it on GitHub
<#2752 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BDKNAVDBX3LD6N4NI4GQXITYAQB6BAVCNFSM6AAAAAA6A235P2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTONZTHA3TEOBXGI>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Hello can you plz accept and merge my pull request |
Can you please assign me this issue? I would like to work on it. |
I will take it |
I want to contribute pallindrome number using recursion java please @tarunsinghofficial assign it to me
The text was updated successfully, but these errors were encountered: