【发布时间】:2014-02-12 01:57:58
【问题描述】:
我正在开发一个程序来反转电话号码,删除所有分隔符,并将其与原始号码进行比较以确定它是否是回文。它还将电话号码转换为带逗号的整数。我有几个问题。我收到错误,不知道为什么。此外,它不会正确确定该数字是否为回文。任何帮助将不胜感激。
//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) );
}
}
【问题讨论】:
-
请标记正确的答案。
标签: java string parsing stringtokenizer stringbuffer