Can I have a flowchart 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++; } } 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; }
Can I have a flowchart 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;
}
Step by step
Solved in 2 steps with 2 images