我需要创建一个函数,使用该charAt
方法将所有大写字符变为小写。我尝试使用类型转换将int
值更改为,char
但之后就迷路了。
/********************************************************************************
This function will calculate the integer average of characters in the array
********************************************************************************/
public static void lowerCase(char[] letter) {
char mean;
mean = (char) ((int) ch + 32);
}