标签:
写出一个程序,接受一个有字母和数字以及空格组成的字符串,和一个字符,然后输出输入字符串中含有该字符的个数。不区分大小写。
输入一个有字母和数字以及空格组成的字符串,和一个字符。
输出输入字符串中含有该字符的个数。
ABCDEF A
1
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); while(in.hasNextLine()) { int num = 0; String strAll = in.nextLine(); String strOne = in.nextLine(); String s1 = strAll.toUpperCase(); // 转换成大写(注意String不可改变性质) String s2 = strOne.toUpperCase(); // 转换成大写 strAll.toUpperCase(); strOne.toUpperCase(); char[] chAll = s1.toCharArray(); char[] chOne = s2.toCharArray(); for(int i = 0; i < chAll.length; i ++) { if(chAll[i] == chOne[0]) { num ++; } } System.out.print(num); } } }
标签:
原文地址:http://www.cnblogs.com/zywu/p/5802743.html