標籤:g++ char 不能 pack for stat pac big 次數
package com.day5.test;
public class Test2 {
/**
* @param args
* 需求:統計字串中大寫字母字元,小寫字母字元,數字字元出現的次數,其他字元出現的次數
* [email protected]#$%^
注意if..else if...else與if...if...if...else的區別
*/
public static void main(String[] args) {
String s="[email protected]#$%^&";
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-統計字串中各字元次數