我現在正在開發一個程序,它可以分割,添加等等,但是,即時消息也可以爲其他人使用,因此,問題通常也包含字母。我可以執行哪些代碼,以便我的程序忽略字符,並只專注於數字?忽略字符
編輯
進口靜態文件java.lang.System.out; import java.util.Scanner;
公共類三叉{ 公共靜態無效的主要(最終字符串ARGS []){
final Scanner first = new Scanner(System.in);
out.print("Enter the first number: ");
final int First = first.nextInt();
final Scanner second = new Scanner(System.in);
out.print("Enter the second number: ");
final int Second = second.nextInt();
final Scanner third = new Scanner(System.in);
out.print("Enter the third number: ");
final int Third = third.nextInt();
numFactors(First);
}
}
好的解決方案在這裏:http://stackoverflow.com/questions/1102891/how-to-check-a-string-is-a-numeric-type-in-java – sikander 2012-03-28 21:34:37
你可以使用'Character.isDigit( c)'如果給定的字符是數字? – twain249 2012-03-28 21:37:23