首页> 后端开发> C++> 正文

打印单词数量、元音字母数量以及每个字符的出现频率

WBOY
发布: 2023-08-25 17:05:19
转载
1318 人浏览过

打印单词数量、元音字母数量以及每个字符的出现频率

输入一个字符串,找到单词的总数、元音字母的数量和用户输入的字符的频率

Input : enter s string : I love my MOM Enter a charcter of which you want to find a frequency: M Total frequency of M : 2 Total number of vowels : 4 Total number of words : 4
登录后复制

算法

START Step 1 Declare array of string, ch, i, freq to 0, vow to 0, word to 0 Step 2 Input a string and a character ch Step 3 Loop for from i to 0 and str[i]!=’\o’ and ++i Step 3.1 IF statement for ch==str[i] Post incrementing freq Step 3.2 End If Step 3.3 IF statement str[i]=='a'||str[i]=='e'||str[i]=='i'||str[i]=='o'||str[i]=='u'||str[i]=='A'||str[i]=='E'||str[i]=='I'||str[i]=='O'||str[i]=='U' Post incrementing vow Step 3.4 End If Step 3.5 IF statement str[i]=’ ’ Post incrementing word Step 3.6 End If Step 4 End For loop STOP
登录后复制

Example

#include  int main() { char str[1000], ch; int i, freq=0, vow=0, word=0; printf("Enter a string of your choice: "); gets(str); printf("Enter a character of which you want to find the frequency: "); scanf("%c",&ch); for(i = 0; str[i] != '\0'; ++i){ if(ch == str[i]) //to find the frequency of a character { ++freq; } if(str[i]=='a'||str[i]=='e'||str[i]=='i'||str[i]=='o'||str[i]=='u'||str[i]=='A'||str[i]=='E'||str[i]=='I'||str[i]=='O'||str[i]=='U') { ++vow; //to find the number of vowels } if (str[i] == ' ') { word++; //to find the number of words } } printf("Frequency of %c = %d", ch, freq); printf("

total number of vowels in a string are %d " ,vow ); printf("

total number of words in a string are %d " ,word+1 ); return 0; }

登录后复制

输出

如果我们运行上面的程序,它将生成以下输出。

Enter a string of your choice: I love PrograMMIng Enter a character of which you want to find the frequency: M Frequency of M = 2 total number of vowels in a string are 6 total number of words in a string are 3
登录后复制

以上是打印单词数量、元音字母数量以及每个字符的出现频率的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!