import java.util.Scanner;
/**
* 编写一个程序,判断输出一个字符串中大写英文字母数,和小写英文字母数,和其他非英文字母数
*
* arvin
*
*/
public class IfString {
public static void main(String[] args) {
int numUppercase = 0;// 大写英文字母数
int numlowercase = 0;// 小写英文字母数
int numOther = 0;// 其他非英文字母数
Scanner sc = new Scanner(System.in);
System.out.println("请输入一个字符串:");
String getString = sc.next();
for (int i = 0; i < getString.length(); i++) {
char c = getString.charAt(i);//把每个元素摘出来
if (c >= 'a' && c <= 'z') {
numlowercase++;
} else if (c >= 'A' && c <= 'Z') {
numUppercase++;
} else {
numOther++;
}
}
System.out.println("大写英文字母数:" + numUppercase + "小写英文字母数:" + numlowercase + "非英文字母数:" + numOther);
sc.close();
}
}