1. 程式人生 > 其它 >判斷一個數的正負

判斷一個數的正負

技術標籤:algorithm演算法

程式

public class Zf0Algorithm {

    public static void main(String[] args) {
        System.out.println(zf0(13));
        System.out.println(zf0(0));
        System.out.println(zf0(-25));
    }

    public static int zf0(int num) {
        return (num>>31)|(-num>>>31);
    }
}

輸出

 1  #test num 13
 0  #test num 0
-1  #test num -25