lots of exercises in java... from https://github.com/exercism/java

RaindropConverter.java 178B

12345678
  1. class RaindropConverter {
  2. String convert(int number) {
  3. throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
  4. }
  5. }