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

2023年 8月 28日 54.6k 0

START
Step 1: declare character, int and double variables
Step 2: Enter any statement
Step 3: while loop
Check condition stmt[i]=getchar()) != '

'
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 != '

')
if it trues enter into loop
1. if(*stmt != ' ')
2. charcount++;
3. else if(*stmt == ' ')
4. wordcount++;
5. stmt++;
iii. return (double)charcount/wordcount;
STOP

相关文章

JavaScript2024新功能:Object.groupBy、正则表达式v标志
PHP trim 函数对多字节字符的使用和限制
新函数 json_validate() 、randomizer 类扩展…20 个PHP 8.3 新特性全面解析
使用HTMX为WordPress增效:如何在不使用复杂框架的情况下增强平台功能
为React 19做准备:WordPress 6.6用户指南
如何删除WordPress中的所有评论

发布评论