2. Fruit Grade by Beethoven Jr Arellano Durian and other fruits are being rated in the market by connoisseurs using a number system by different metrics. A machine called FRUWI is used to translate these numbers into Letter-Grading System made by BeFruitty Co. The equivalence are as follows. Letter-Grade Equivalence

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter6: User-defined Functions
Section: Chapter Questions
Problem 17PE
icon
Related questions
Question
2. Fruit Grade
by Beethoven Jr Arellano
Durian and other fruits are being rated in the market by
connoisseurs using a number system by different
metrics. A machine called FRUWI is used to translate
these numbers into Letter-Grading System made by
BeFruitty Co. The equivalence are as follows.
Letter-Grade Equivalence
S-10
A - Less than 10 until 8
B - Less than 8 until 7
C - Below 7
Create a function that accepts an integer and returns
its equivalent letter grade.
A boiletplate code is given but there are some existing
errors that needs to be resolved.
Sample Output
Mister Connoisseur, please rate my fruit.
My my, your fruit is: 8.9
FRUWI says... A
main.c
1 #include <studio.h>
1000 NOWN F
2
char convert2Letter (float rating);
5 void Main() {
3
4
6
7
8
9
10
11
12
13
14
15 }
16
17
18
19
20
21
22 }
float connoisseur;
printf("Mister Connoisseur, please rate my fruit.\n");
printf("My my, your fruit is : ");
scanf("%f", connoisseur);
printf("FRUWI says... %c", convert2Ietter (connoisseur));
char convert2Letter (float rating) {
char grade[] = "SABC"; // do not change this line of code
Transcribed Image Text:2. Fruit Grade by Beethoven Jr Arellano Durian and other fruits are being rated in the market by connoisseurs using a number system by different metrics. A machine called FRUWI is used to translate these numbers into Letter-Grading System made by BeFruitty Co. The equivalence are as follows. Letter-Grade Equivalence S-10 A - Less than 10 until 8 B - Less than 8 until 7 C - Below 7 Create a function that accepts an integer and returns its equivalent letter grade. A boiletplate code is given but there are some existing errors that needs to be resolved. Sample Output Mister Connoisseur, please rate my fruit. My my, your fruit is: 8.9 FRUWI says... A main.c 1 #include <studio.h> 1000 NOWN F 2 char convert2Letter (float rating); 5 void Main() { 3 4 6 7 8 9 10 11 12 13 14 15 } 16 17 18 19 20 21 22 } float connoisseur; printf("Mister Connoisseur, please rate my fruit.\n"); printf("My my, your fruit is : "); scanf("%f", connoisseur); printf("FRUWI says... %c", convert2Ietter (connoisseur)); char convert2Letter (float rating) { char grade[] = "SABC"; // do not change this line of code
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

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