1038: 绝对值最大
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner cin = new Scanner(System.in);int a=cin.nextInt();int b=cin.nextInt();int c=cin.nextInt();if(Math.abs(a)>=Math.abs(b)&&Math.abs(a)>=Math.abs(c))System.out.println(a);else if(Math.abs(b)>=Math.abs(a)&&Math.abs(b)>=Math.abs(c))System.out.println(b);else System.out.println(c);}
}