Comment trouver une différence absolue dans Java

//step 1:
import java.lang.Math;

//step 2:
int n = -7;
Math.abs(n)
//output = 7
Potato Poteto