java Factorial please help me..

java India
  • 12 years ago
    Factovisors

    Filename:         Factovisors.java

     

    The factorial function, n! is defined as follows for all non-negative integers n:

     
    0! = 1

    n! = n × (n − 1)! (n > 0)
      

    We say that a divides b if there exists an integer k such that

                 k × a = b
    Input
     

    The input to your program consists of several lines, each containing two non-negative integers, n and m, both less than 231.

      
    Output
     

    For each input line, output a line stating whether or not m divides n!, in the format shown below.

      
    Sample Input
     

    6 9

    6 27

    20 10000

    20 100000

    1000 1009
     
    Sample Output
     
    9 divides 6!

    27 does not divide 6!

    10000 divides 20!

    100000 does not divide 20!

    1009 does not divide 1000!
     

     

Post a reply

No one has replied yet! Why not be the first?

Sign in or Join us (it's free).

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“Any fool can write code that a computer can understand. Good programmers write code that humans can understand.” - Martin Fowler