University stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Util.java 206B

123456789101112
  1. class Util {
  2. static String factors(long num, long[] factors) {
  3. String s = num+" = ";
  4. for (int i = 0; i < factors.length; ++i) {
  5. if (i != 0)
  6. s += " * ";
  7. s += factors[i];
  8. }
  9. return s;
  10. }
  11. }