Java Integer Compare isBiggerThan0(int num)

Here you can find the source of isBiggerThan0(int num)

Description

is Bigger Than

License

Apache License

Declaration

public static boolean isBiggerThan0(int num) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {

    public static boolean isBiggerThan0(int num) {
        if (0 >= num)
            return false;
        return true;
    }/* w  w  w  .j  a  v  a  2  s  .  co  m*/
}