fork download
  1. class Easy286ReverseFactorial
  2. {
  3. public static void main (String args[]) {
  4. Easy286ReverseFactorial easy = new Easy286ReverseFactorial();
  5. easy.reverseFactorial(3628800);
  6. easy.reverseFactorial(479001600);
  7. easy.reverseFactorial(6);
  8. easy.reverseFactorial(18);
  9. }
  10.  
  11. public void reverseFactorial(int number) {
  12. int factorial=1 ,count = 1;
  13. while((factorial = (factorial * ++count)) < number );
  14. System.out.println(number + "=" + (number==factorial? "" + count + "!" : "NONE"));
  15. }
  16. }
Success #stdin #stdout 0.04s 711168KB
stdin
Standard input is empty
stdout
3628800=10!
479001600=12!
6=3!
18=NONE