Analyze the below code. Find the errors in this program and fix them (note: add your comments for explanation).   #include  //Header files  int main()     //main function {    //declare variables that are used in program float cost1,cost2,cost3; float average;   //asking from user to enter three items prices printf("\nEnter three item costs between 1 to 100: ") //entered prices are stored in variables scanf("%f %f %d",cost1,&cost2, cost3); //formula of average is used. Total sum divided by total no average=(cost1+cost2+cost3)/3:     if(average>=90) //if condition is true then display following output { printf("Expensive"); } else if(average>=70 & average<90) {   //if condition is true then display following output   printf("Average");   } else if(average<70); { //if condition is true then display following output printf("Cheap"):   }   return 0;  }         Insert a copy of the correct code and explain how your answer

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter16: Searching, Sorting And Vector Type
Section: Chapter Questions
Problem 20PE
icon
Related questions
Question

Analyze the below code. Find the errors in this program and fix them (note: add your comments for explanation).

 

#include<stdio.h>  //Header files

 int main()     //main function

{   

//declare variables that are used in program

float cost1,cost2,cost3;

float average;

 

//asking from user to enter three items prices

printf("\nEnter three item costs between 1 to 100: ")

//entered prices are stored in variables

scanf("%f %f %d",cost1,&cost2, cost3);

//formula of average is used. Total sum divided by total no

average=(cost1+cost2+cost3)/3:

 

 

if(average>=90)

//if condition is true then display following output

{ printf("Expensive"); }

else if(average>=70 & average<90)

{

  //if condition is true then display following output

 

printf("Average");

 

}

else if(average<70);

{

//if condition is true then display following output

printf("Cheap"):

 

}

 

return 0; 

}

 

 

 

 

Insert a copy of the correct code and explain how your answer.                              

Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Variables
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