Ask Question
5 June, 18:17

Assume that grade is a variable whose value is a letter grade- - any one of the following letters: 'A', 'B', 'C', 'D', 'E', 'F', 'W', 'I'. Assume further that there are the following int variables, declared and already initialized: acount, bcount, ccount, dcount, ecount, fcount, wcount, icount. Write a switch statement that increments the appropriate variable (acount, bcount, ccount, etc.) depending on the value of grade. So if grade is 'A' then acount is incremented; if grade is'B' then bcount is incremented, and so on.

+3
Answers (1)
  1. 5 June, 19:11
    0
    switch (grade) {

    case 'A':

    acount++;

    break;

    case 'B':

    bcount++;

    break;

    case 'C':

    ccount++;

    break;

    case 'D':

    dcount++;

    break;

    case 'E':

    ecount++;

    break;

    case 'F':

    fcount++;

    break;

    case 'W':

    wcount++;

    break;

    case 'I':

    icount++;

    break;

    }
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Assume that grade is a variable whose value is a letter grade- - any one of the following letters: 'A', 'B', 'C', 'D', 'E', 'F', 'W', 'I'. ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers