C语言,输入一个字符串,统计重复出现某个字母的次数。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言,输入一个字符串,统计重复出现某个字母的次数。相关的知识,希望对你有一定的参考价值。

合理简洁,最好有注释。

main() char c[64]; //我们要用的字符串char l; //要查找的字符int i,sum=0; //sum为出现次数printf("请输入字符串:\n"); scanf("%s",c); //读入字符串 printf("\n请输入要查找的字母:/n"); scanf("%c",&l); //读入要查找的字符 for(i=0;i<64;i++) if (c[i]=='\0') break; //查看字符串是否已经结尾 if (c[i]==l) sum=sum+1; //查看该字符是否为所要查找的字符 printf("\n字符%c在字符串中出现%d次。",l,sum); //输出结果 参考技术A #include <stdio.h>
#include <string.h>
#include <stdlib.h>

char count[100];
char str[1024];

int main()

while(gets(str))
memset(count,0,sizeof(count));
int len=strlen(str);
for(int i=0;i<len;i++)
count[str[i]-'A']++;

for(int i=0;i<=57;i++)
if(count[i])
int tmp=65+i;
printf("%c %d\n",tmp,count[i]);


return 0;

以上的程序是关于字母A-Z和a-z的
参考技术B main()

char getstring[100]; //要输入的内容
char find=0; //要查找的内容
int i,n;
scanf("%s",getstring); //输入母串
scanf("%s",&find); //输入字母
for(i=0,n=0;i<100;i++)
if(find==getstring[i])
n++

printf("%d times",n);

编写一个程序,统计输入字符串中每一个小写英文字母出现的次数

import java.util.Scanner;

/**
 * @author:(LiberHome)
 * @date:Created in 2019/3/1 22:18
 * @description:
 * @version:$
 */
/*编写一个程序,统计输入字符串中每一个小写英文字母出现的次数*/
public class page0901 {
    public static void main(String[] args) {
        /*首先,输入一段字符串作为字符数组*/
        System.out.println("请输入一段字符串");
        Scanner scanner = new Scanner(System.in);
        String s = scanner.nextLine();
        char[] chars = s.toCharArray();
        countLeters(chars);
    }

    private static void countLeters(char[] arr) {
        /*然后,初始化一个长度为26的整型数组,初始值全为0*/
        int[] temp = new int[26];
        for (int i = 0; i < temp.length; i++) {
            temp[i]=0;
        }
        /*遍历字符数组,将其值对应的ascll值作为整型数组下标,++*/
        for (int i = 0; i < arr.length; i++) {
            if (arr[i]>=‘a‘&&arr[i]<=‘z‘){
                temp[arr[i]-‘a‘]++;
            }
        }
        /*最后打印输出每一个小写英文字母及其出现的次数*/
        for (int i = 0; i <26 ; i++) {
            System.out.println((char)(i+‘a‘)+"出现了 : "+temp[i]+" 次");
        }
    }
}

 

以上是关于C语言,输入一个字符串,统计重复出现某个字母的次数。的主要内容,如果未能解决你的问题,请参考以下文章

C语言编程-9_4 字符统计

c语言编程。从标准输入设备上输入一个字符串,分别统计其中每个数字,空格,字母及其他字符出现的次数。

用C语言编写一个程序,输入一个字符串,统计其中各个字符出现的次数

C语言 统计文本文件中出现的次数最多和最少的字符串

编程: 输入一个字符串,统计该字符串中每个字母出现的次数,并按出现次数降序的输出每个字母。

用C语言编写一个程序,输入一个字符串,统计其中各个字符出现的次数