Skip to main content

nCr AND nPr

nCr and nPr

#include < stdio.h >

long factorial(int);
long find_ncr(int, int);
long find_npr(int, int);

main()
{
  int n, r;
  long ncr, npr;

  printf("Enter the value of n and r\n");
  scanf("%d%d",&n,&r);

  ncr = find_ncr(n, r);
  npr = find_npr(n, r);

  printf("%dC%d = %ld\n", n, r, ncr);
  printf("%dP%d = %ld\n", n, r, npr);

  return 0;
}

long find_ncr(int n, int r)
{
  long result;

  result = factorial(n)/(factorial(r)*factorial(n-r));

  return result;
}

long find_npr(int n, int r)
{
  long result;

  result = factorial(n)/factorial(n-r);

  return result;
}

long factorial(int n)
{
  int c;
  long result = 1;
  for( c = 1 ; c < = n ; c++ )
  result = result*c;
  return ( result );
}

Comments

Popular posts from this blog

Software

Software The ingredients that enables a computer to perform a specific task is software, Which consist​ of instructions.A set of instructions that drive a computer to perform specific task is called program.These instructions tell the machine physical components what to do,without the instruction a computer couldn't do anything at all.Software that are classified into two category 1.System software 2.Application software

REVERSE NUMBER

Reverse number #include < stdio.h > int main() {   int n, reverse = 0;   printf("Enter a number to reverse\n");   scanf("%d",&n);   while (n != 0) {   reverse = reverse * 10;   reverse = reverse + n%10;   n = n/10; } /*taking unit place digit of no and moving to reverse Dividing the no to discard unit place digit*/   printf("Reverse of entered number is = %d\n", reverse);   return 0; }

FIND ARMSTRONG NUMBER

Find armstrong number #include < stdio.h > int main() {   int number, sum = 0, temp, remainder;   printf("Enter an integer\n");   scanf("%d",&number);   temp = number; /*if sum of cubes of each digit in a number is same as the number then it is called as armstrong no.*/   while( temp != 0 )   {   remainder = temp%10;   sum = sum + remainder*remainder*remainder;   temp = temp/10; /*taking unit place digits cube and adding into sum*/   }   if ( number == sum )   printf("Entered number is an armstrong number.\n");   else   printf("Entered number is not an armstrong number.\n");   return 0; }