“Math.Absolute Java” Kod odpowiedzi

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

Odpowiedzi podobne do “Math.Absolute Java”

Pytania podobne do “Math.Absolute Java”

Więcej pokrewnych odpowiedzi na “Math.Absolute Java” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu