I am writing a code to turn a numerically entered grade into a letter grade however am running into issues with getting it to work. Is there something that I seem to be doing wrong on my included code?#include int main(void){char calculateL

I am writing a code to turn a numerically entered grade into a letter grade however am running into issues with getting it to work. Is there something that I seem to be doing wrong on my included code?#include int main(void){char calculateLetterGrade(int);printf(“Enter a number grade for the course:”)if (numgrade >= 90 && numgrade <= 100){outputgrade=&#39;A&#39; ;}else=”” if=”” (numgrade=””>= 80 && numgrade <= 89){outputgrade=&#39;B&#39; ;}else=”” if=”” (numgrade=””>= 70 && numgrade <= 79){outputgrade=&#39;C&#39; ;}else=”” if=”” (numgrade=””>= 65 && numgrade <= 69){outputgrade=&#39;D&#39; ;}else{outputgrade=&#39;F&#39; ;}lettergrade=”calculateLetterGrade(numerical_grade);printf(“The” letter=”” grade=”” for=”” %d=”” is=”” %cn”,=”” numerical_grade,=””>

WeCreativez WhatsApp Support
Our customer support team is here to answer your questions. Ask us anything!
👋 Hi, how can I help?
Scroll to Top