参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { // 统计一个给定字符串中指定的字符出现的次数。 Scanner sc = new Scanner(System.in); while(sc.hasNext()) { String str1 = sc.nextLine(); if(str1.equals("#")) { return; } String str2 = sc.nextLine(); for (int i = 0; i < str1.length(); i++) { int count = 0; for (int j = 0; j < str2.length(); j++) { if(str1.charAt(i) == str2.charAt(j)) { count++; } if(j == str2.length()-1) { System.out.println(str1.charAt(i) + " " + count); } } } } } }
0.0分
4 人评分
点我有惊喜!你懂得!浏览:4145 |
C语言程序设计教程(第三版)课后习题10.1 (C语言代码)浏览:1516 |
C语言程序设计教程(第三版)课后习题12.5 (C语言代码)浏览:875 |
川哥的吩咐 (C++代码)浏览:1076 |
A+B for Input-Output Practice (VII) (C++代码)浏览:643 |
拆分位数 (C语言代码)浏览:1361 |
蛇行矩阵 (C语言代码)浏览:792 |
WU-蓝桥杯算法提高VIP-Quadratic Equation (C++代码)浏览:1808 |
WU-输出九九乘法表 (C++代码)浏览:1852 |
三角形 (C++代码)记忆化搜索浏览:1317 |