Horje
Programme to calculate Combination Code Example
Programme to calculate Combination
// Java program To calculate
// The Value Of nCr
class GFG {
 
static int nCr(int n, int r)
{
    return fact(n) / (fact(r) *
                  fact(n - r));
}
 
// Returns factorial of n
static int fact(int n)
{
    int res = 1;
    for (int i = 2; i <= n; i++)
        res = res * i;
    return res;
}
 
// Driver code
public static void main(String[] args)
{
    int n = 5, r = 3;
    System.out.println(nCr(n, r));
}
}
 
// This code is Contributed by
// Smitha Dinesh Semwal.




Java

Related
String Code Example String Code Example
what does setFocusable do in java Code Example what does setFocusable do in java Code Example
open google maps cycling navigation intent Code Example open google maps cycling navigation intent Code Example
java coalesce Code Example java coalesce Code Example
android alert change color Code Example android alert change color Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8