Skip to content

Instantly share code, notes, and snippets.

@thmain
Created February 24, 2016 02:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thmain/a11a94df5b7d2b7614be to your computer and use it in GitHub Desktop.
Save thmain/a11a94df5b7d2b7614be to your computer and use it in GitHub Desktop.
public class DecimalOctalPalindrome {
public String DecimalToOctal(int N) {
String Oct = "";
while (N > 0) {
int x = N % 8;
N = N / 8;
Oct += x;
}
return Oct;
}
public boolean isPalindrome(String S) {
int i = 0;
int j = S.length() - 1;
while (i < j) {
if (S.charAt(i) != S.charAt(j)) {
return false;
}
i++;
j--;
}
return true;
}
public void findBothPalindrome(int start, int end) {
for (int i = start; i <= end; i++) {
String decimal = String.valueOf(i);
if (isPalindrome(decimal)) {
String Oct = DecimalToOctal(i);
if (isPalindrome(Oct)) {
System.out.print(Oct + " ");
}
}
}
}
public static void main(String[] args) {
DecimalOctalPalindrome d = new DecimalOctalPalindrome();
d.findBothPalindrome(1, 2000);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment