A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. public static void main(String[] args) {
  2.                 Scanner sc = new Scanner(System.in);
  3.                 String line = sc.nextLine();
  4.                
  5.                 int eng = 0;
  6.                 int space = 0;
  7.                 int num = 0;
  8.                 int other = 0;
  9.                
  10.                 char[] arr = line.toCharArray();
  11.                 for (char c : arr) {
  12.                         if(((c >= 'a' )&& (c <= 'z')) ||( c >= 'A' && c <= 'Z')){
  13.                                 eng++;
  14.                         }else if(c == ' '){
  15.                                 space++;
  16.                         }else if(c >= '0' && c <= '9'){
  17.                                 num++;
  18.                         }else {
  19.                                 other++;
  20.                         }
  21.                 }
  22.                 System.out.println(eng + "====" + space + "====" + num + "===" + other);
  23.         }

  24. }
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马