Math.abs Method In Java Code Example


Example: 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));        } }

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy