কম্পিউটার

যখন লুপ ব্যবহার করে একটি বাক্যের গড় শব্দ দৈর্ঘ্য গণনা করার জন্য একটি সি প্রোগ্রাম লিখুন


সমস্যা

রান টাইমে একটি বাক্য লিখুন এবং একটি বাক্যে উপস্থিত শব্দের গড় দৈর্ঘ্য গণনা করার জন্য একটি কোড লিখুন

সমাধান

অ্যালগরিদম

START
Step 1: declare character, int and double variables
Step 2: Enter any statement
Step 3: while loop
       Check condition stmt[i]=getchar()) != '\n'
       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 != '\n')
            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

প্রোগ্রাম

#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()) != '\n')
      i++;
   stmt[i]='\n';
   avglen=calculatewordlength(stmt);
   printf("average length of word is:%f.\n ", avglen);
}
double calculatewordlength(const char *stmt){
   int charcount=0;
   int wordcount=1;
   while(*stmt != '\n'){
      if(*stmt != ' ')
         charcount++;
      else if(*stmt == ' ')
         wordcount++;
      stmt++;
   }
   return (double)charcount/wordcount;
}

আউটপুট

enter any statement:Tutorials Point is the best resource for online education average length of word: 5.444444444.

  1. সি প্রোগ্রাম ফর লুপ ব্যবহার করে সমস্ত অঙ্ককে শব্দে লিখতে

  2. ডাইনামিক লিংকড লিস্ট ব্যবহার করে গাড়ির তথ্য সংরক্ষণ করতে সি প্রোগ্রাম।

  3. সি প্রোগ্রাম লিঙ্ক করা তালিকার দৈর্ঘ্য খুঁজে বের করতে

  4. সি প্রোগ্রামে একটি ডেকাগনের পরিধি গণনা করার প্রোগ্রাম