[填空題] 請完善程序(程序文件名:Java_3.java)并進行調(diào)試。請在下畫線處填入正確內(nèi)容,然后刪除下畫線。請勿刪除注釋行和其他已有的語句內(nèi)容。 [題目
[填空題]
請完善程序(程序文件名:Java_3.java)并進行調(diào)試。請在下畫線處填入正確內(nèi)容,然后刪除下畫線。請勿刪除注釋行和其他已有的語句內(nèi)容。
[題目要求]
統(tǒng)計一個英文文本字符串包含的英文元音字母的個數(shù),使程序的運行結果如下:
The text contained vowels:88
源程序:
public class Java_3 {
public static void main(String[] args) {
String text = " Beijing, the Capital City, is the political, "
+ "cultural and diplomatic centre of China. It has"
+ "become a modern international cosmopolitan city"
+ " with more than 11 million people. The Capital"
+ " International Airport, 23.5 km from the city centre,"
+ "is China’s largest and most advanced airport. " ;
int vowels =0;
int (1) = text.length();
for(int i = 0;i<textLength; i++) {
char ch=Character.toLowerCase( text. (2) );
if(ch==’a’||ch==’e’||ch==’i’||ch==’o’||c
textLength
參考解析:下面的循環(huán)使用到變量textLength作為循環(huán)的終止條件,顯然textLength是字符串的長度,所以此處將字符串的長度賦值給變量textLength。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領域),建議您咨詢相關領域專業(yè)人士。