有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java如何使用字符串标记器和缓冲区。

我正在开发一个程序来反转一个电话号码,删除所有分隔符,并将其与原始号码进行比较,以确定它是否是回文。它还会将电话号码转换为带逗号的整数。我有几个问题。我犯了错误,不知道为什么。此外,它将无法正确确定该数字是否为回文。任何帮助都将不胜感激

//Phone String Palindrome Conversions
//This program will turn a phone number around and check to see if it is a palindrome
//This program will remove all deasdspace and symbols from the phone number
//This program will reverse the string and compare it to the original
//This program will put a phone number in a long intiger format
import java.io.*;
import java.util.*;
import java.text.DecimalFormat;
public class DottinoN_palindrome
{
  public static void main (String [] args) throws IOException
{
    String phoneshort1;
    boolean pal;
BufferedReader br= new BufferedReader(new InputStreamReader(System.in));
System.out.println("Please enter your phone number");
String phone1=br.readLine();
phoneshort1 = spaceremover(phone1);
System.out.println(phoneshort1);
pal = palindrometest(phoneshort1);
System.out.println(pal);
if(pal = false)
{
  System.out.println("Your phone number is a palindrome!");
}
else if(pal = true)
  System.out.println("Your phone number is not a palendrome...");
numberformat(phoneshort1);

}
public static String spaceremover (String phone2)
{
String phoneshort = "";
StringTokenizer st = new StringTokenizer(phone2,"()- " ,false);
while(st.hasMoreTokens())
{
  phoneshort += st.nextToken();
}
return phoneshort;
}
public static boolean palindrometest (String phoneshort2)
{
boolean pal;
StringBuffer br = new StringBuffer(phoneshort2);
String phonebkwd = br.reverse().toString();
if(phonebkwd == phoneshort2)
{
  pal = true;
}
else pal = false;
System.out.println(phonebkwd + "--" + phoneshort2);
return pal;

}
public static void numberformat (String phoneshort2)
{
DecimalFormat formatter = new DecimalFormat("0,000,000,000");
int number = Integer.parseInt(phoneshort2);
System.out.println("Your phone number as an intiger is: " + formatter.format(number) );
}
}

共 (0) 个答案