下面的方法意圖確定它那唯一的參數是否是一個奇數。這個方法能夠正確運轉嗎?
public static boolean odd(int number) { return number % 2 == 1; }