题目
解释
题目讲的就是,给你三行数,每一行包含3个浮点小数,让你找到最大的那个小数,然后如果最后的小数是第一个,输出W,是第二个,输出T,是第三个,输出L,最后将三行最大值累乘得到的值res,输出(res*0.65-1)*2保留两位小数,
解题思路
题目不难,每输入三个数字,找到最大值再累乘,判断最大值位置输出W/T/L
代码
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
double res=1;
for (int i = 0; i < 3; i++) {
double w=sc.nextDouble();
double t=sc.nextDouble();
double l=sc.nextDouble();
Double max=Math.max(w,Math.max(t,l));
if (i==0){
if (max==w){
System.out.print("W");
} else if (max == t) {
System.out.print("T");
}else {
System.out.print("L");
}
}else{
if (max==w){
System.out.print(" W");
} else if (max == t) {
System.out.print(" T");
}else {
System.out.print(" L");
}
}
res*=max;
}
res=(res*0.65-1)*2;
System.out.printf(" %.2f",res);
}
}