Answers for "how to test the float or int number in java"

1

test if string is float java

public static void main(String[] args) {
    String str = "5588";
    //check if int
    try{
        Integer.parseInt(str);
    }catch(NumberFormatException e){
        //not int
    }
    //check if float
    try{
        Float.parseFloat(str);
    }catch(NumberFormatException e){
        //not float
    }
}
Posted by: Guest on December-13-2020
2

how to check if number is integer in java

if(x == (int)x){
 println("x is an integer");
}
Posted by: Guest on October-28-2020

Code answers related to "how to test the float or int number in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language