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

编写一个C程序,使用while循环计算句子的平均单词长度

WBOY
发布: 2023-08-28 18:25:06
转载
1416 人浏览过

编写一个C程序,使用while循环计算句子的平均单词长度

问题

在运行时输入一个句子,并编写一段代码来计算句子中出现的单词的平均长度

解决方案

算法
START
Step 1: declare character, int and double variables
Step 2: Enter any statement
Step 3: while loop
       Check condition stmt[i]=getchar()) != &#39;</p><p>&#39;
       True then enter into loop
       Increment I and call the function at step 5
Step 4: Print the average length return by function
       From step 5
Step 5: called function calculatewordlength
         i. declare and initialize
            charcount=0 and wordcount=1
         ii. while loop
            check condition (*stmt != &#39;</p><p>&#39;)
            if it trues enter into loop
            1.    if(*stmt != &#39; &#39;)
            2.    charcount++;
            3.    else if(*stmt == &#39; &#39;)
            4.    wordcount++;
            5.    stmt++;
         iii. return (double)charcount/wordcount;
STOP
登录后复制

程序

#include<stdio.h>
#include<string.h>
double calculatewordlength(const char *stmt);
int main(){
   char stmt[100];
   int i=0;
   double avglen;
   printf("enter any statement:");
   while((stmt[i]=getchar()) != &#39;</p><p>&#39;)
      i++;
   stmt[i]=&#39;</p><p>&#39;;
   avglen=calculatewordlength(stmt);
   printf("average length of word is:%f.</p><p> ", avglen);
}
double calculatewordlength(const char *stmt){
   int charcount=0;
   int wordcount=1;
   while(*stmt != &#39;</p><p>&#39;){
      if(*stmt != &#39; &#39;)
         charcount++;
      else if(*stmt == &#39; &#39;)
         wordcount++;
      stmt++;
   }
   return (double)charcount/wordcount;
}
登录后复制

输出

enter any statement:Tutorials Point is the best resource for online education average length of word: 5.444444444.
登录后复制

以上是编写一个C程序,使用while循环计算句子的平均单词长度的详细内容。更多信息请关注PHP中文网其他相关文章!

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