“Math.absolute Java” Code-Antworten

ABS in Java

public class Test { 

   public static void main(String args[]) {
      Integer a = -8;
      double d = -100;
      float f = -90;

      System.out.println(Math.abs(a));
      System.out.println(Math.abs(d));     
      System.out.println(Math.abs(f));    
   }
}
Selfish Swan

Math.absolute Java

float a = 123.0f;
System.out.println(Math.abs(a)); //123.0

double d = -999.3456;
System.out.println(Math.abs(d)); //999.3456

int e = -123;
System.out.println(Math.abs(g)); //123

long g = -12345678;
System.out.println(Math.abs(g)); //12345678
Sushreeta

Ähnliche Antworten wie “Math.absolute Java”

Fragen ähnlich wie “Math.absolute Java”

Weitere verwandte Antworten zu “Math.absolute Java” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen