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

while 루프를 사용하여 문장의 평균 단어 길이를 계산하는 C 프로그램을 작성하세요.

WBOY
풀어 주다: 2023-08-28 18:25:06
앞으로
1416명이 탐색했습니다.

while 루프를 사용하여 문장의 평균 단어 길이를 계산하는 C 프로그램을 작성하세요.

Problem

런타임에 문장을 입력하고 문장에 나오는 단어의 평균 길이를 계산하는 코드를 작성하세요

Solution

Algorithm
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
로그인 후 복사

Program