• Courses
  • Code Compiler
  • Discuss
  • Pricing
  • Teams
Menu
- 1

Write a java program to reverse a number in entered number

java
18th Feb 2018, 3:05 PM
gopabandhu sahoo
gopabandhu sahoo - avatar
2 Answers
+ 2
int revNum(int num) { int rev = 0; while (num > 0) { rev = rev * 10 + num % 10; num /= 10; } return rev; }
18th Feb 2018, 5:13 PM
David Akhihiero
David Akhihiero - avatar
- 1
https://www.sololearn.com/discuss/1075645/?ref=app
18th Feb 2018, 3:06 PM
gopabandhu sahoo
gopabandhu sahoo - avatar

Often have questions like this?

Learn more efficiently, for free:

  • Introduction to Python

    7.1M learners

  • Introduction to Java

    4.7M learners

  • Introduction to C

    1.5M learners

  • Introduction to HTML

    7.5M learners

See all courses
Hot today
Functions in python
2 Votes
How to make a playground
1 Votes
For Mobile app
0 Votes
How can you find whether a number is odd or even in a different way(other than (x%2==0))?
1 Votes
I need advice
1 Votes
Html 5 document question
1 Votes
this query always result to be incorrect from Sorting Data lesson
1 Votes
š™µš™øš™½š™³ ššƒš™·š™“ š™øš™½š™æšš„ššƒ š™¾š™µ ššƒš™·š™“ š™æššš™¾š™¶ššš™°š™¼
1 Votes
Python
0 Votes
Can someone explain inline and block elements please
0 Votes