要求用户输入测验分数并返回字母等级的程序

问题描述 投票:0回答:1

我需要编写一个程序,要求用户输入不超过10的等级,然后它将返回相应的字母等级“ A,B,C,D,F”,我需要使用for循环用switch语句。我该如何开始?

java loops for-loop switch-statement
1个回答
0
投票

我不确定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. 
© www.soinside.com 2019 - 2024. All rights reserved.