したがって、char配列の整数平均を見つける必要があるこの関数の作成に問題があります。
これは私の配列です char[]letters = {'A', 'B' , 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J'} ;
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) );
}