文字列の大文字をチェックするメソッドを作成しました。1 つの int カウントが見つかった場合は 1 増加します。それは0であってはなりません..誰もこれに光を当てることができますか?
public final boolean findIfCaps(String msg)
{
int count=0;
msg = msg.replaceAll("\\W","");
for(int x=0;x<msg.length();x++){
if(Character.isUpperCase(msg.charAt(x)))
count++;
}
double percent = count/msg.length();
if(percent>0.5)
return true;
return false;
}