Answered step by step
Verified Expert Solution
Question
1 Approved Answer
What is the process of getting this answer. The answer is 917328 but I don't understand how to work it out. What value does mystery(918273)
What is the process of getting this answer. The answer is 917328 but I don't understand how to work it out.
What value does mystery(918273) return?
public static String mystery(int x)
{
String s = "";
for (int k = x; k > 0; k = k / 10)
{
if (k % 2 == 0) s = s + k % 10;
else s = k % 10 + s;
}
return s;
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started