> 백엔드 개발 > C++ > 본문

단어 수, 모음 수, 각 문자의 빈도를 인쇄합니다.

WBOY
풀어 주다: 2023-08-25 17:05:19
앞으로
1399명이 탐색했습니다.

단어 수, 모음 수, 각 문자의 빈도를 인쇄합니다.

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

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 <stdio.h>
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] != &#39;\0&#39;; ++i){
      if(ch == str[i]) //to find the frequency of a character {
         ++freq;
      }
      if(str[i]==&#39;a&#39;||str[i]==&#39;e&#39;||str[i]==&#39;i&#39;||str[i]==&#39;o&#39;||str[i]==&#39;u&#39;||str[i]==&#39;A&#39;||str[i]==&#39;E&#39;||str[i]==&#39;I&#39;||str[i]==&#39;O&#39;||str[i]==&#39;U&#39;) {
         ++vow; //to find the number of vowels
      }
      if (str[i] == &#39; &#39;) {
         word++; //to find the number of words
      }
   }
   printf("Frequency of %c = %d", ch, freq);
   printf("</p><p>total number of vowels in a string are %d " ,vow );
   printf("</p><p>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 학습자의 빠른 성장을 도와주세요!