Provide both flowchart and pseudo-code for below C program code please? #include #include #include int main() { float weights[20]; float closestToAvgWeights[20]; float weightInput; float sumOfWeights = 0.0; float avgWeight = 0.0; int count = 0; do{ printf("Enter a weight in kg, or 0 to quit: "); scanf("%f", &weightInput); if(weightInput<0){ printf("Ignoring negative value.\n"); continue; } weights[count] =weightInput; sumOfWeights+=weightInput; avgWeight = sumOfWeights/count; count++; }while(weightInput!=0); printf("Number of entries: %d\n", count-1); printf("Average weight: %0.3f kg\n", avgWeight); int index = 0; for (int i = 0; i< count; i++) { if(fabs(weights[i]-avgWeight) < 1.0){ closestToAvgWeights[index] = weights[i]; index++; } }

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 32SA
icon
Related questions
Question
Provide both flowchart and pseudo-code for below C program code please?
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
int main()
{
float weights[20];
float closestToAvgWeights[20];
float weightInput;
float sumOfWeights = 0.0;
float avgWeight = 0.0;
int count = 0;
do{
printf("Enter a weight in kg, or 0 to quit: ");
scanf("%f", &weightInput);
if(weightInput<0){
printf("Ignoring negative value.\n");
continue;
}
weights[count] = weightInput;
sumofWeights+=weightInput;
avgWeight = sumOfWeights/count;
count++;
}while(weightInput!=0);
printf("Number of entries: %d\n", count-1);
printf("Average weight: %0.3f kg\n", avgWeight);
int index = 0;
for (int i = 0; i < count; i++) {
if(fabs(weights[i]-avgWeight) < 1.0}{
closestToAvgWeights[index] = weights[i];
index++;
}
}
printf("Number of items closest to average: %d\n",index);
printf("The item(s) - weight in kg:\n");
for(int i = 0; i< index; i++){
printf("%0.3f\n", closestToAvgWeights[i]);
}
return 0;
}
Transcribed Image Text:Provide both flowchart and pseudo-code for below C program code please? #include <stdio.h> #include <math.h> #include <stdlib.h> int main() { float weights[20]; float closestToAvgWeights[20]; float weightInput; float sumOfWeights = 0.0; float avgWeight = 0.0; int count = 0; do{ printf("Enter a weight in kg, or 0 to quit: "); scanf("%f", &weightInput); if(weightInput<0){ printf("Ignoring negative value.\n"); continue; } weights[count] = weightInput; sumofWeights+=weightInput; avgWeight = sumOfWeights/count; count++; }while(weightInput!=0); printf("Number of entries: %d\n", count-1); printf("Average weight: %0.3f kg\n", avgWeight); int index = 0; for (int i = 0; i < count; i++) { if(fabs(weights[i]-avgWeight) < 1.0}{ closestToAvgWeights[index] = weights[i]; index++; } } printf("Number of items closest to average: %d\n",index); printf("The item(s) - weight in kg:\n"); for(int i = 0; i< index; i++){ printf("%0.3f\n", closestToAvgWeights[i]); } return 0; }
Expert Solution
steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Knowledge Booster
Algebraic Expressions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr