हिंदी

Write a method fact(int n) to find the factorial of a number n. Include a main class to find the value of S where: S = n!m!(n-m) where, n! = 1 × 2 × 3 × .................................. × n - Computer Applications

Advertisements
Advertisements

प्रश्न

Write a method fact(int n) to find the factorial of a number n. Include a main class to find the value of S where: 

S = `(n!)/(m!(n-m))` 
where, n! = 1 × 2 × 3 × .................................. × n

कोड लेखन

उत्तर

import java.util.*;
public class FQS
{
int fact(int n)
{int f = 1;
for (int i = 1; i <= n; i++)
f = f * i;
return f;
}

public static void main(String jk[])
{FQ5 p = new FQ5();
Scanner ob = new Scanner(System.in);
int m, n;
double S;
System.out.print("Enter the value of m: ");
m = ob.nextInt();
System.out.print("Enter the value of n: ");
n = ob.nextInt(); 
S = p.fact(n) / p.fact(m) * p.fact(n − m);
System.out.print("\n\n The value of n! / m! * (n − m)! is: " + 8);
}}
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 5: User - Defined Methods - EXERCISES [पृष्ठ ३३८]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
अध्याय 5 User - Defined Methods
EXERCISES | Q VII. 5. | पृष्ठ ३३८
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×