所以我在创建这个函数时遇到了麻烦,它必须找到一个 char 数组的整数平均值。
这是我的数组 char[]letters = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J'} ;
我试图键入 cast 以找到整数平均值,如 A= 32 j= 74。添加整数值并将其转回一个字符,但此刻卡住了。
/********************************************************************************
This function will calculate the integer average of characters in the array
********************************************************************************/
public static void average( char [] letters )
{
int total = 0;
char mean;
total = total + letters[letters.length];
mean = (char)total / letters.length;
System.out.println("The value is " + average( letters) );
}