Почему мой код не работает, когда мой ввод содержит символ? Я хочу, чтобы мой код игнорировал символы
package code;
public class Solution3 {
public static int sumOfDigit(String s) {
int total = 0;
for(int i = 0; i < s.length(); i++) {
total = total + Integer.parseInt(s.substring(i,i+1));
}
return total;
}
public static void main(String[] args) {
System.out.println(sumOfDigit("11hhkh01"));
}
}
Как я могу отредактировать мой код, чтобы он игнорировал любой символ, но все же суммировал цифры из ввода? Ошибка Exception in thread "main" java.lang.NumberFormatException: For input string: "h"
1 ответ
Потому что следующая строка кода вызовет исключение NumberFormatException:
Integer.parseInt("h");
Integer.parseInt
не знает, как разобрать число с буквы 'h'.
Чтобы игнорировать любые символы, которые не являются числами:
for(int i=0; i<s.length(); i++){
try {
total = total + Integer.parseInt(s.substring(i,i+1));
catch(NumberFormatException nfe) {
// do nothing with this character because it is not a number
}
}