阅读下列程序并完成程序填空。题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。


阅读下列程序并完成程序填空。题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。

import java.util.*;

public class lianxi07 {

public static void main(String[]

A.gs) {

int digital = 0;

int character = 0;

int other = 0;

int blank = 0;

char[] ch = null;

Scanner sc = new Scanner(System.in);

String s = sc.nextLine();

ch = s.toCharArray();

for(int i=0; i if(ch >;= .0.&;&; ch <;= .9.) {

digital ++;

} else if((ch >;= .a.&;&; ch <;= .z.)||ch >; .A.&;&; ch <;= .Z.) {

character ++;

} else if(ch == .) {

blank ++;

} else {

other ++;

}

}

System.out.println("数字个数: " + digital);

System.out.println("英文字母个数: " + character);

System.out.println("空格个数: " + blank);

System.out.println("其他字符个数:" + other );

}

}

正确答案:length


Tag:Flash动画设计制作 个数 字符 时间:2024-01-18 20:26:10