计算字符个数
題目描述
寫出一個程序,接受一個有字母和數字以及空格組成的字符串,和一個字符,然后輸出輸入字符串中含有該字符的個數。不區分大小寫。
輸入描述:
輸入一個有字母和數字以及空格組成的字符串,和一個字符。
輸出描述:
輸出輸入字符串中含有該字符的個數。
輸入例子:
ABCDEF A輸出例子:
1import 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);}} }
?
轉載于:https://www.cnblogs.com/zywu/p/5802743.html
總結
- 上一篇: PageRank算法--从原理到实现
- 下一篇: slimphp中间件调用流程的理解