gpt4 book ai didi

java - 在不使用 if/else 语句的情况下将输出限制为某个整数的简单方法?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:08:49 24 4
gpt4 key购买 nike

我有一项作业需要计算成绩。下面的代码块将用户输入的“部分”乘以 4,同时将总输出限制为 20。根据分配,我们不能使用 if/else 语句,但这就是我能想到的限制输出为 20。也许使用简单的数学方法?但我想不出一个简单的方法来做到这一点。

 public static int calcDGrade(int sections) //method to calculate the grade for the students sections
{
int maxDGrade = ((sections*4));

if (maxDGrade > 20) //limits total score to 20

{
return 20;
}
else
{
return maxDGrade;
}

}

最佳答案

你可以使用 Math.min(int, int)获得 20 的最小值和您的其他值。有点像

int maxDGrade = Math.min(20, sections*4); 

因为您想要 20 或乘法的结果,较小

关于java - 在不使用 if/else 语句的情况下将输出限制为某个整数的简单方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31868215/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com