黑马程序员技术交流社区

标题: 统计一个字符串中大写小写数字以及其他字符出现的次数 [打印本页]

作者: 孙广浩    时间: 2015-11-11 22:41
标题: 统计一个字符串中大写小写数字以及其他字符出现的次数
  1. package com.heima.string;

  2. public class Test2 {

  3.         //统计一个字符串中大写字母字符,小写字母字符,数字字符出现的次数,其他字符出现的次数。ABCDEabcd123456!@#$%^
  4.         public static void main(String[] args) {
  5.                         String s = " ABCDEabcd123456!@#$%^";
  6.                         int daxie = 0 ;
  7.                         int xiaoxie = 0;
  8.                         int shuzi = 0;
  9.                         int other = 0;                  
  10.                         for (int i = 0 ; i < s.length(); i ++){
  11.                                         char c = s.charAt(i);           
  12.                                         if (c >= 'A' && c <= 'Z') {
  13.                                                 daxie ++;
  14.                                         }else if (c >= 'a'&& c <= 'z'){
  15.                                                 xiaoxie ++;
  16.                                         }else if (c>='0'&& c<='9') {
  17.                                                 shuzi ++;
  18.                                         }else {
  19.                                                 other ++;
  20.                                         }
  21.                         }
  22.                         System.out.println(s + "中大写字母有:" + daxie + "个,小写字母有:" + xiaoxie + "个,数字字符:"
  23.                                         + shuzi + "个,其他字符:" + other + "个");
  24.            }
  25. }
复制代码

作者: 2015竹林风    时间: 2015-11-11 23:14
学习了......
作者: 小笨笨天    时间: 2015-11-12 00:45
学习了解




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2