FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
01-Core-Java/08-Java-Programs/037-Reverse-a-Number.java at main · shaikbasha-dev/01-Core-Java · GitHub
shaikbasha-dev
/
01-Core-Java
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
2
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
01-Core-Java
/
08-Java-Programs
/
037-Reverse-a-Number.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
67 lines (52 loc) · 2 KB
Breadcrumbs
01-Core-Java
/
08-Java-Programs
/
037-Reverse-a-Number.java
Copy path
File metadata and controls
67 lines (52 loc) · 2 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
* ============================================================================
* Program Name : Reverse a Number
* File Name : 037-Reverse-a-Number.java
* Class Name : ReverseANumber
*
* Description:
* This program accepts an integer from the user and reverses its digits
* using the while loop.
*
* Objective:
* - Understand user input using the Scanner class.
* - Learn how to use the while loop.
* - Reverse the digits of a given number.
*
* Author : Shaik Mahaboob Basha
* Repository : 01-Core-Java
* Folder : 08-Java-Programs
* ============================================================================
*/
import
java
.
util
.
Scanner
;
public
class
ReverseANumber
{
// The main() method is the entry point of every Java application.
public
static
void
main
(
String
[]
args
) {
// Create a Scanner object to read input from the keyboard.
Scanner
scanner
=
new
Scanner
(
System
.
in
);
// Ask the user to enter a number.
System
.
out
.
print
(
"Enter a Number: "
);
// Read the number entered by the user.
int
number
=
scanner
.
nextInt
();
// Store the original number for displaying the result later.
int
originalNumber
=
number
;
// Declare and initialize a variable to store the reversed number.
int
reverse
=
0
;
// Reverse the digits using the while loop.
while
(
number
!=
0
) {
// Extract the last digit from the number.
int
digit
=
number
%
10
;
// Append the extracted digit to the reversed number.
reverse
=
reverse
*
10
+
digit
;
// Remove the last digit from the original number.
number
=
number
/
10
;
}
// Display the reversed number.
System
.
out
.
println
(
"Reverse of "
+
originalNumber
+
" = "
+
reverse
);
// Example Output:
// Enter a Number: 12345
// Reverse of 12345 = 54321
// Close the Scanner object to release system resources.
scanner
.
close
();
}
}
Back
|
FazBrowse Home
|
New Git URL