Maison > développement back-end > C++ > le corps du texte

Écrivez un programme C pour calculer la longueur moyenne des mots des phrases à l'aide d'une boucle while

WBOY
Libérer: 2023-08-28 18:25:06
avant
1416 Les gens l'ont consulté

Écrivez un programme C pour calculer la longueur moyenne des mots des phrases à laide dune boucle while

Problème

Entrez une phrase au moment de l'exécution et écrivez un code pour calculer la longueur moyenne des mots apparaissant dans la phrase

Solution

Algorithme
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
Copier après la connexion

Programme