北、南、東、西の中で最も高い値が必要なため、北、南、東、または西の名前を返すだけです。北、南、東、西のすべての値を比較して、最大値を取得する必要があります。
以下は私のコードスニペットです。
public String startpgm(String x){
String result=null;
double priority = 0;
double North = 1;
double South = 3;
double East = 4;
double West = 5;
System.out.println("Priority:"+Math.max(North, South)); //I am getting the max value, what i need is North or South!!
priority= Math.max(North, South);
result = Double.toString(priority);
return result ;
}