Java 一个关于统计一句话中字母个数的程序!!! 25
我是新手,如题,写一个charhistogram才程序,从而可以得到一句话里面有多少的英文字母:比方说„Theartofflyingislearninghow...
我是新手,如题,写一个charhistogram才程序,从而可以得到一句话里面有多少的英文字母:比方说 „The art of flying is learning how to throw yourself at the ground and miss“
程序最后输出是:
a b c d e f g h i j k l m n o p q r s t u v w x y z
4 0 0 2 4 3 3 4 4 0 0 3 1 5 6 0 0 5 4 6 2 0 2 0 2 0
谁能忙我写个完成的代码阿!越简单越好的,好的可以加分! 展开
程序最后输出是:
a b c d e f g h i j k l m n o p q r s t u v w x y z
4 0 0 2 4 3 3 4 4 0 0 3 1 5 6 0 0 5 4 6 2 0 2 0 2 0
谁能忙我写个完成的代码阿!越简单越好的,好的可以加分! 展开
3个回答
展开全部
import java.io.*;
import java.util.*;
public class Test {
static Map<Character, Integer> m = new HashMap<Character, Integer>();
private void add(String s) {
char[] chars = s.toCharArray();
for (char key : chars) {
if (m.containsKey(key)) {
Integer i = m.get(key);
m.put(key, ++i);
} else {
m.put(key, new Integer(1));
}
}
}
public static void main(String[] args) {
Test t = new Test();
if (args.length >= 1) {
t.add(args[0]);
} else {
try {
System.out.println("请输入字符:");
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
t.add(br.readLine());
} catch (IOException e) {
e.printStackTrace();
}
}
System.out.println(m);
}
}
import java.util.*;
public class Test {
static Map<Character, Integer> m = new HashMap<Character, Integer>();
private void add(String s) {
char[] chars = s.toCharArray();
for (char key : chars) {
if (m.containsKey(key)) {
Integer i = m.get(key);
m.put(key, ++i);
} else {
m.put(key, new Integer(1));
}
}
}
public static void main(String[] args) {
Test t = new Test();
if (args.length >= 1) {
t.add(args[0]);
} else {
try {
System.out.println("请输入字符:");
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
t.add(br.readLine());
} catch (IOException e) {
e.printStackTrace();
}
}
System.out.println(m);
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如果只是统计字符长度可直接用length()方法即可
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询