FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Java/Conversions/OctalToDecimal.java at master · loisoft/Java · GitHub
loisoft
/
Java
Public
forked from
TheAlgorithms/Java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Java
/
Conversions
/
OctalToDecimal.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
45 lines (40 loc) · 1.13 KB
Breadcrumbs
Java
/
Conversions
/
OctalToDecimal.java
Copy path
File metadata and controls
45 lines (40 loc) · 1.13 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
package
Conversions
;
import
java
.
util
.
Scanner
;
/**
* Converts any Octal Number to a Decimal Number
*
* @author Zachary Jones
*/
public
class
OctalToDecimal
{
/**
* Main method
*
* @param args Command line arguments
*/
public
static
void
main
(
String
args
[]) {
Scanner
sc
=
new
Scanner
(
System
.
in
);
System
.
out
.
print
(
"Octal Input: "
);
String
inputOctal
=
sc
.
nextLine
();
int
result
=
convertOctalToDecimal
(
inputOctal
);
if
(
result
!= -
1
)
System
.
out
.
println
(
"Result convertOctalToDecimal : "
+
result
);
sc
.
close
();
}
/**
* This method converts an octal number to a decimal number.
*
* @param inputOctal The octal number
* @return The decimal number
*/
public
static
int
convertOctalToDecimal
(
String
inputOctal
) {
try
{
// Actual conversion of Octal to Decimal:
Integer
outputDecimal
=
Integer
.
parseInt
(
inputOctal
,
8
);
return
outputDecimal
;
}
catch
(
NumberFormatException
ne
) {
// Printing a warning message if the input is not a valid octal
// number:
System
.
out
.
println
(
"Invalid Input, Expecting octal number 0-7"
);
return
-
1
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL