java编写程序,读入用户输入的一个字符串,然后确定并输出每一个小写元音字母(a,e,i,o,u)在

2022-08-13 社会 103阅读
import java.util.Scanner;

public class StringDemo {
static char[] cs = {'a','e','i','o','u'};
static char[] bcs = {'A','E','I','O','U'};
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String str = sc.nextLine();
int[] arys = findChar(str);
for (int i = 0; i  System.out.println(cs[i]+"出现的个数"+arys[i]);
}
System.out.println("大写元音字母的个数"+arys[5]);
System.out.println("非元音字母的个数"+arys[6]);
}

private static int[] findChar(String str) {
int[] arys = new int[7];//0~5存储每个小写元音的个数,6存储大写元音的个数,7存储非元音的个数
int sumx= 0;//用于保存元音字母的个数(不区分大小写)
for (int i = 0; i < str.length(); i++) {
char c = str.charAt(i);
for (int j = 0; j < cs.length; j++) {
if(c==cs[j]){
arys[j]++;//小写元音个数增加
sumx++;
break;
}
}
for (int j = 0; j < bcs.length; j++) {
if(c==bcs[j]){
arys[5]++;
sumx++;
break;
}
}
}
  arys[6] = str.length()-sumx;//非元音的个数
return arys;
}
}

输出

AppleIlove
a出现的个数0
e出现的个数2
i出现的个数0
o出现的个数1
u出现的个数0
大写元音字母的个数2
非元音字母的个数5
声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com