Java Factorial Program

Java Factorial Program

I want to create a factorial program in Java. Please help me.

View Answers

June 12, 2012 at 5:54 PM

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;


public class Factorial {
    public static void main(String args[]) throws IOException {
        System.out.println("Please Input Any Number");
        int num = 0;
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String data = (String) br.readLine();

        num = Integer.parseInt(data);

        int result = num;
        for (int i = 1; i < num; i++) {
            result *= i;
            //result = result * i;
        }
        System.out.println(result);
    }

 }

Output

Input Any Number
5
120

Description:- In the above example find out the factorial of a number. Here, we have used BufferedReader class to input a number to find its factorial. The method readLine() of this class reads the value. As this method returns string type so we have converted it to integer. Then using the loop, we got the factorial of the input number.









Related Tutorials/Questions & Answers:
program on factorial of a given number in java
program on factorial of a given number in java  please tell me, how to write program on factorial of a given number in java
program on factorial of a given number in java
program on factorial of a given number in java  please tell me, how to write program on factorial of a given number in java
Advertisements
program for factorial
program for factorial  how to set size of buttons on frame
program for factorial
program for factorial  how to set size of buttons on frame
Factorial Program in Java
Factorial program in Java helps programmer to write factors of any given... of bounds exception". Example of Factorial program in Java: import java.io.... execution of the program. BufferReader is defined under the Java I/O package
factorial - Java Beginners
factorial Example in Java  The factorial method is used frequently in probability problems. The factorial of a positive integer n (written as n!) is equal... class Factorial Example{ public static long factorial(int n){ if(n <
Write a program to calculate factorial of any given number
Factorial Examples - Java Factorial Example to calculate factorial of any... program to calculate factorial of any given number. First of all define a class... in the range of double data type in java. Here is the code of program:ADS
Java Swing Compute Factorial
Java Swing Compute Factorial In this section, we are going to find the factorial of a given number. Here an user is allowed to enter a number into the text field whose factorial is to be determined. On pressing the button the value
Write a program to find a factorial in any given number
Write a program to find a factorial in any given number This programming tutorial will teach you how to write a factorial of any given number... that is equal to 24, and factorial of  0! is 0 always.Example : A program to find
ModuleNotFoundError: No module named 'factorial'
ModuleNotFoundError: No module named 'factorial'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'factorial' How to remove the ModuleNotFoundError: No module named '
find the factorial
find the factorial  how to find the factorial through the while loop...) { int value = 5, factorial = 1, temp = value; while (temp > 0) { factorial *= temp; temp
Java Program - Java Beginners
Java Program  Write a program to find the Factorial of a number using Recursion. Factorial can be defined as Factorial(n) = 1 * 2 * 3 â?¦.* (n-1... FactorialUsingRecursion(); System.out.println("Factorial of 2 = " + f.findFactorial(2
factorial of fibonacci
factorial of fibonacci   A code for the factorial of a fibonacci series. Example when the user enters 6, the fibonacci series is 8 and the factorial will be 8! or 8 x 7 x 6 x 5 x 4 x 3 x 2 x 1. So if the user enters the number 6
program
program  write a java program to input a no. and print wheather the no. is a special no or not. (special no. are those no whose factorial of the sum of digit of the no is same as the original
ModuleNotFoundError: No module named 'factorial-hunan'
ModuleNotFoundError: No module named 'factorial-hunan'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'factorial-hunan' How to remove the ModuleNotFoundError: No module named
ModuleNotFoundError: No module named 'factorial_qxj'
ModuleNotFoundError: No module named 'factorial_qxj'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'factorial_qxj' How to remove the ModuleNotFoundError: No module named
ModuleNotFoundError: No module named 'factorial-hunan'
ModuleNotFoundError: No module named 'factorial-hunan'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'factorial-hunan' How to remove the ModuleNotFoundError: No module named
ModuleNotFoundError: No module named 'factorial_qxj'
ModuleNotFoundError: No module named 'factorial_qxj'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'factorial_qxj' How to remove the ModuleNotFoundError: No module named
Finding a Factorial using while loop
Finding a Factorial using while loop   ... are going to find out the factorial of 12 by using the while loop. In while loop... the scriptlet to calculate the factorial of 12. In the scriptlet we generally writes
java program code
java program code  can any one write a program (class) which will have two methods Fibonacci and Factorial, which will be a void and a return respectively. i will be glad if it can have a good display results
Finding a Factorial using while loop
Finding a Factorial using while loop      In this example we are going to find out the factorial of 12 by using... gets true. We are using the scriptlet to calculate the factorial of 12
Calculating factorial in JRuby
Calculating factorial in JRuby   ... program" example you must be aware with the way to run JRuby program. Now in this example you will know to "Calculate Factorial in JRuby"
Write a program in java...
to enter an integer number. Write a program in java to find the factorial...Write a program in java...  Hi, friends Please, can you help me? Q1: Write a program in java to simulate a calculator. Your program should take two
How to get factorial in mysql
How to get factorial in mysql  Hi, In order to improve the speed... alot for a function in mysql to find factorial numbers of a number and couldn't.... example: for 1155, the factorial numbers would be: 3, 5, 7, 11 Thank you
Calculate factorial of a number.
Calculate factorial of a number.  How to calculate factorial...; import java.io.InputStreamReader; public class Factorial { public static...; } System.out.println(result); } } Description: - Factorial of any
java program for
java program for   java program for printing documents,images and cards
factorial using recursive
factorial using recursive  can please give this code !i am going to do a factorial function using recursion definition and then . my professor told me that we are going to create a three screen. the first screen should be input
a Java program
a Java program    Write a Java program to print even numbers from 2 to 1024? Write a Java program to print ? My Name is Mirza? 100 times? Write a Java program to print Fibonacci Series? Write a Java program to reverse a number
Java Program
Java Program  A Java Program that print the data on the printer but buttons not to be printed
java program
java program  write a program to print 1234 567 89 10
java program
java program  Write a program to demonstrate the concept of various possible exceptions arising in a Java Program and the ways to handle them.  ... in Java
java program
java program  write java program for constructor,overriding,overriding,exception handling
java program
java program  how to write an addition program in java without using arithematic operator
java program
java program  write a java program to display array list and calculate the average of given array
java program
java program  write a java program to display array list and calculate the average of given array
Java Program
Java Program  java program to insert row in excel sheet after identifying an object
java program
java program  java program to implement the reflection of a particular class details like constructor,methods and fields with its modifiers
java program
java program  Write a java program to do matrix addition operation On two given matrices
java program
java program  Write a java program to find the number of Positive numbers in m* n matrix
java program
java program  Write a program to create an applet and display The message "welcome to java
java program
java program  hi friends how to make a java program for getting non prime odd numbers in a given series
java program
java program   Write a program to find the difference between sum of the squares and the square of the sums of n numbers
java program
java program  write a program to create text area and display the various mouse handling events
java program
java program  Develop the program calculatePipeArea. It computes the surface area of a pipe, which is an open cylinder. The program accpets three values: the pipes inner radius, its length, and the thickness of its wall
java program
java program  . Develop the program calculatePipeArea. It computes the surface area of a pipe, which is an open cylinder. The program accpets three values: the pipes inner radius, its length, and the thickness of its wall
java program
java program  . Write a program which performs to raise a number to a power and returns the value. Provide a behavior to the program so as to accept any type of numeric values and returns the results
Java program
Java program  Write a program which performs to raise a number to a power and returns the value. Provide a behavior to the program so as to accept any type of numeric values and returns the results
program in java
program in java  write a reverse program in java using string buffer.the input and out put as follows. input- hi good mornig out put-ih doog ginrom
java program
java program  write a java program to compute area of a circle.square,rectangle.triangle,volume of a sphere ,cylinder and perimeter of cube using method over riding
java program
java program  write a java program to compute area of a circle.square,rectangle.triangle,volume of a sphere ,cylinder and perimeter of cube using method over riding

Ads