public void isOdd(int n) { if (n & 1 == 1) return true; return false; }
[quote=引用 2 楼 Yock_ 的回复:] [quote=引用 1 楼 lynmison 的回复:] public boolean isOdd(int n) { return ((n & 1) == 1); }
[quote=引用 1 楼 lynmison 的回复:] public boolean isOdd(int n) { return ((n & 1) == 1); }
public boolean isOdd(int n) { return ((n & 1) == 1); }
62,628
社区成员
307,259
社区内容
加载中
试试用AI创作助手写篇文章吧