我正在尝试创建一种方法,该方法将在语句/数字(numOfZero)中对零进行计数,该方法将字符串作为输入并返回字符串中出现的“ 0”的数目。 如果没有零,则应返回零。我用过String.length()和String.CharAt(int index)。但出现一些错误。有帮助吗?
答案 0 :(得分:-1)
public static int countOccurance(int num){
int count = 0;
String aux = Integer.toString(num); //conversion Integer to string.
for(int i= 0; i<aux.length(); i++){
if(aux.charAt(i) == '0'){
count++;
}
}
return count;
}
这是方法。它计算您的数字中有多少个零。试试吧!