分析:

1.键盘录入一个字符串数据

2.定义三个统计变量,初始化值都是0

3.遍历字符串,得到每个字符

4.拿字符进行比较,如何判断大小写?假设ch是一个字符:

                大写判断:ch>='A' && ch <= 'Z';

                小写判断:ch >='a' && ch <='z';

                数字判断:ch >='0' && ch <='9';

5.输出统计结果

Code:

Public static void main (String [] args ){

Scanner sc = new Scanner (System.in);

System.out.println("请输入一个字符:");

String s = sc.nextLine();

int bigCount = 0;

int smallCount = 0;

int numberCount =0;

for (int x=0;x<s.length();x++){

char ch = s.charAt(x);

if (ch >= 'A' && ch <= 'Z'){

   bigCount++;

}else if (ch >= ' a' && ch <= 'z'){

   smallCount++;

}else if (ch >= '0' && ch <= '9'){

   numberCount++;

}else{

System.out.println("字符"+ch+"非法');

System.out.println("大写"+bigCount+"个');

System.out.println("小写"+smallCount+"个');

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

}

}

}

}

}