Java Program to Reverse a Number | Learn Coding

preview_player
Показать описание
Java Full Course for Beginners...!👇👇

Please Like | Share | SUBSCRIBE our Channel..!
Learn Coding
🙏🙏🙏

Like our Facebook Page...!
Learn Coding

Don't forget to tag our Channel...!
#ReverseNumber
#LearnCoding
#ReverseNumberProgram
#javareversenumber
#ask4help
#JavaBasicsProgram
#reverseanumber
Рекомендации по теме
Комментарии
Автор

Vai ap jis tarike sa samjhate ho practically in computer and in dry run ma usse mera concept clear ho jata ha apka samjhane ka tarika bahut acha ha I liked your video . aur youtube channel is tarha sa dry run karke koi nahi samjhata sirf ap ho jo dry run karke samjhate ho just keep uploading more videos .

EnthusiasticKangaroo-khgy
Автор

That Dry Run Explanation.. Love it bro❤️

ruturajbhusare
Автор

Accept a three digit number from the user (100 to 999). First, check that the number has only three digits. Then separate each digit of the number and then arrange them in the reverse order such that the middle digit remains the same and first and third digit are swapped.

vatsalajandrotia
Автор

You are not reversing the number, actually you are printing only the digits. You should have done something like this: answer=0, in the loop, answer =answer*10 + r and at the end of loop just print answer
:)

ArashpreetKaur-juzi
Автор

🙏🙏🙏🙏 thanks today I am new subscriber your teaching style is good

RAJ-mnnm
Автор

Excellent thanks sensei even if I don't understand what you say, I can see what you do

elkhanmammadli
Автор

Farenheit to celsius conversion taking three integer s, e and w. S is starting value, E is end ending value and W is step size. Could you make a video sir for this program.

KUNDANKUMAR-leio
Автор

Sir hum int n= 10; while (n>=1) karke n- - decrement karke bhi toh reverse mein le jaa sakte hai

sainikyadav
Автор

int n, r ;
int rev=0;
while (n>0)
{
r = n%10;
rev = rev * 10 + r ;
n = n / 10 ;
}
System.out.println(" The reverse number is : " + rev);

ashishbansal
Автор

Exam ke 2 hours pehele thek raha hu, dry run ki method to ek dam shai he

Snappypranav
Автор

10/1
Remainder 1
Logic behind it ?
🤔🤔🤔

satish_dewasi
Автор

Sir but how float is converted into integer type without type casting..

sciencequotesfacts
Автор

input as 1000, I', getting rev as 0001, how to get only 1

KausainAhmed-pz
Автор

Sir,
Write a program to check whether the entered number is same as the reverse number. If both are same, iit is a palindrome, otherwise if they are not same, then it is not a palindrome ( Do the same for entering and reversing the string )

ashishbansal