Question: how to fix?(c progrAM) 35 return EXIT SUCCESS; 36 } 37 380 float computeArea(float length, float width) { 39 return (length *width); 40 } 41e
how to fix?(c progrAM)
35 return EXIT SUCCESS; 36 } 37 380 float computeArea(float length, float width) { 39 return (length *width); 40 } 41e float computePerimeter(float length, float width) { 42 return (length*2 + width*2); 43 } 440 float computeDiagonal (float length, float width) { 45 return (sqrt(length *length + width *width)); 46 } 470 float computeValue(float length, float width, int location) { 48 int price; 49 switch(location) { 50 case 1: 51 price = 1000; 52 break; 53 case 2: 54 price = 500; 55 break; 56 case 3: 57 price = 100; break; 59 } 960 return (computeArea(length width)\*price); 61 } 62 stray l'in program 58 Console X Properties of Call Graph Terminal CDT Build Console [SseifNucleotideCounter] 35 return EXIT SUCCESS; 36 } 37 380 float computeArea(float length, float width) { 39 return (length *width); 40 } 41e float computePerimeter(float length, float width) { 42 return (length*2 + width*2); 43 } 440 float computeDiagonal (float length, float width) { 45 return (sqrt(length *length + width *width)); 46 } 470 float computeValue(float length, float width, int location) { 48 int price; 49 switch(location) { 50 case 1: 51 price = 1000; 52 break; 53 case 2: 54 price = 500; 55 break; 56 case 3: 57 price = 100; break; 59 } 960 return (computeArea(length width)\*price); 61 } 62 stray l'in program 58 Console X Properties of Call Graph Terminal CDT Build Console [SseifNucleotideCounter]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
