You are viewing a single comment's thread. Return to all comments →
public static long andProduct(long a, long b) { long result=a; for(long i=a+1;i<=b;i++){ result=result & i; } return result; }
Seems like cookies are disabled on this browser, please enable them to open this website
AND Product
You are viewing a single comment's thread. Return to all comments →
Java