我正在做一个函数,我需要获取用户输入并用用户输入的内容替换数组中的所有元音。这是我的数组:老实说,我不知道我在做什么。
char [] letters = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J'}
我正在考虑在里面做一个嵌套if
,for loop
但就像我说的那样,我不知道我是否朝着正确的方向前进。
/********************************************************************************
This function will prompt the user to replace all vowels in the array
********************************************************************************/
public static void replace( char [] letters ){
for(int i =0; i < letters.length; i++){
if(i >= 'A')
if(i <='Z')
System.out.println(letters[i]);
else
break;
}
}