我需要编写一个程序,要求用户输入不超过10的等级,然后它将返回相应的字母等级“ A,B,C,D,F”,我需要使用for循环用switch语句。我该如何开始?
我不确定for循环的用途。将输入存储到整数变量之后,可以对每种可用情况使用switch语句。为此,您将获得案例0-10。示例:
switch (int name here){
case 1: System.out.println("F");
break;
case 2: System.out.println("F");
break;
//Continue for each available number and the grade corresponding to it.