switch-case (if を使用せずに) を使用して、与えられた 3 つの数値から最大の数を見つけたいと思います。このプログラムを使用して質問に答えました。
class GreatestNoSwitch{
public int main(int a, int b, int c){
int d = (int)Math.floor(a/b);
int max = 0;
switch(d){
case 0:
max = b;
break;
default:
max = a;
}
d = (int)Math.floor(max/c);
switch(d){
case 0:
max = c;
}
return max;
}
}
誰にも簡単な答えがありますか?