请编写一个程序,从键盘输入字符串,统计字符串中小写字母a到f各自出现次数,并依次放入pp所指的数组中

求此程序,速度,急!!!!!!C语言的... 求此程序,速度,急!!!!!!
C语言的
展开
 我来答
_fmlyht
2008-11-07 · TA获得超过2359个赞
知道大有可为答主
回答量:2398
采纳率:0%
帮助的人:1854万
展开全部
?语言实现
#include <stdio.h>
#include <string.h>
main()
{
char str[128];
int pp[6];
int i,L;
printf("Please input;");scanf("%s",str);
L=strlen(str);
for(i=0;i<L;i++) if(str[i]>='a'&&str[i]>='f') pp[str[i]-'a']++;
}
=========================================================
#include <stdio.h>
main()
{
char str[128];
int pp[6]={{0}};
int i;
for(i=0,str[0]=getchar();str[i]!=10;str[++i]=getchar()) if(str[i]>='a'&&str[i]>='f') pp[str[i]-'a']++;
}

百度网友5195152
2008-11-07 · TA获得超过1164个赞
知道大有可为答主
回答量:1314
采纳率:0%
帮助的人:718万
展开全部
给你个例子
不是完全实现

import java.util.*;
import java.io.*;

public class sy7_21 {
static HashSet jia;

public static void main(String args[]) throws IOException {
HashMap map = new HashMap();
String s;
InputStreamReader ir = new InputStreamReader(System.in);
BufferedReader in = new BufferedReader(ir);
s = in.readLine();
for (int n = 0; n < s.length(); n++) {
char a = s.charAt(n);
if (map.get(a) == null) {
Set tai = new HashSet();
tai.add(n + 1);
map.put(a, tai);
} else {
Object abc = map.get(a);
Set jia = new HashSet();
jia.add(n + 1);
map.put(a, jia);
}
}
System.out.println(map);
ir.close();
in.close();
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式