码迷,mamicode.com
首页 > 编程语言 > 详细

java-统计字符串中各字符次数

时间:2017-12-25 23:21:08      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:g++   char   不能   pack   for   stat   pac   big   次数   

package com.day5.test;

public class Test2 {

  /**
  * @param args
  * 需求:统计字符串中大写字母字符,小写字母字符,数字字符出现的次数,其他字符出现的次数
  * ABCDEabcd123456!@#$%^

    注意if..else if...else与if...if...if...else的区别
  */
public static void main(String[] args) {
  String s="ABCDEabcd123456!@#$%^&";
  int big=0;
  int small=0;
  int num=0;
  int other=0;
  /*for(int i=0;i<s.length();i++)
  {
    char c=s.charAt(i);
    if(c>=‘A‘&&c<=‘Z‘)
      big++;
    if(c>=‘a‘&&c<=‘z‘)
      small++;
    if(c>=‘0‘&&c<=‘9‘)//注意不能写成if(c>=0&&c<=9)
      num++;
    else
      other++;
  }
  System.out.println(big);//5
  System.out.println(small);//4
  System.out.println(num);//6
  System.out.println(other);//16
  */
  for(int i=0;i<s.length();i++)
  {
    char c=s.charAt(i);
    if(c>=‘A‘&&c<=‘Z‘)
      big++;
    else if(c>=‘a‘&&c<=‘z‘)
      small++;
    else if(c>=‘0‘&&c<=‘9‘)//注意不能写成if(c>=0&&c<=9)
      num++;
    else
      other++;
  }
  System.out.println(big);//5
  System.out.println(small);//4
  System.out.println(num);//6
  System.out.println(other);//7
  }

}

java-统计字符串中各字符次数

标签:g++   char   不能   pack   for   stat   pac   big   次数   

原文地址:https://www.cnblogs.com/zhujialei123/p/8111474.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!