Skip to content

Commit

Permalink
Create ReverseInteger.java
Browse files Browse the repository at this point in the history
  • Loading branch information
NSC508 authored Sep 16, 2020
1 parent a359602 commit cefba98
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions ReverseInteger.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
public class ReverseInteger {
public static void main(String[] args) {
int result = characterToInt('1') + characterToInt('2');
System.out.println(result);
}

//public int reverseInteger(int toBeReversed) {
//int temporary =
//}

public static int characterToInt(char a) {
switch (a) {
case '0':
return 0;
case '1':
return 1;
case '2':
return 2;
case '3':
return 3;
case '4':
return 4;
case '5':
return 5;
case '6':
return 6;
case '7':
return 7;
case '8':
return 8;
case '9':
return 9;
}
return -1;
}
}

0 comments on commit cefba98

Please sign in to comment.