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++; } }
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++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter3: Assignment, Formatting, And Interactive Input
Section3.2: Formatting Numbers For Program Output
Problem 12E: (Civil eng.) Write a C++ program to calculate and display the maximum bending moment, M, of a beam...
Related questions
Question
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 2 steps with 2 images
Knowledge Booster
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.Recommended textbooks for you
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr