I have this collection:
A,B,C,D,E
How can i find all possibilities between this collection? I know that 5 factorial=120 (this is the number of possibilities).
A,B,C,D,E
A,B,C,E,D
A,B,D,...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_20164446.html
Zones:
Visual BasicDate Answered: 08/11/2002 Rating: 8.4 Views: 0
Hello, I know that I can make use of recursion to make a factorial program. But I found that by using this method, it can't calculate the number which is very big, how can I do in order to make the...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20240538.html
Zones:
C++Date Answered: 04/01/2002 Rating: 8.0 Views: 0
hai,,
In java script i want to calculate 900! is it possible?
Because i am getting o/p upto 170! the rest as infinity..
http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Q_20527105.html
Zones:
JavaScriptDate Answered: 02/27/2003 Rating: 6.6 Views: 0
#include <iostream>
using std::cout;
using std::endl;
using std::cin;
double Factorial(int iNumber)
{
if(iNumber > 1)
{
for(int i=0; i<=iNumber; iNumber--)
iNumber *= iNum...
http://www.experts-exchange.com/Programming/Languages/Java/Q_20662688.html
Zones:
JavaDate Answered: 06/30/2003 Rating: 7.4 Views: 0
Can someone please help me understand this equality?
[(2n+2)! (n!)^2] / [(n+1)!]^2 (2n)! = [(2n+2)(2n+1)] / (n+1)^2
maybe easier to look at would be to write the left side of this as:
[...
http://www.experts-exchange.com/Other/Math_Science/Q_20676814.html
Hi everybody
I'm working with a factory class and have along my lines the following code, where i define a singleton variable like this
...
Utility::RegisterObject<Button> b;
...
RegisterO...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_21278661.html
Zones:
C++Date Answered: 01/21/2005 Rating: 5.8 Views: 0
hi experts,
need to get some basic clarifications in EJB
1) I know how to create home and remote interfaces in EJB. i want to know WHY do we use the home and remote interfaces?
2)I am usin...
http://www.experts-exchange.com/Programming/Languages/Java/Q_21298086.html
Zones:
Java,
EJB,
JNDIDate Answered: 02/08/2005 Rating: 8.0 Views: 0
Hi all,
In using a factorial function
double factorial (int num)
{
if (num==1)
return 1;
return factorial(num-1)*num;
}
How can I return the factorial value such as 100!
It is...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_21587524.html
Zones:
C++Date Answered: 10/12/2005 Rating: 8.8 Views: 16
I'd like to build a layer in all applications that interface with
DLLs, of which I know and have most source code access too (along
with compiling). The layer will abstract the DLLs. This kee...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_21662995.html
Zones:
C#Date Answered: 01/03/2006 Rating: 8.4 Views: 0
Hello,
I've been studying design patterns lately and learning a lot, but the factory design pattern just doesn't quite sink in for me for some reason. Can someone please explain real-world scene...
http://www.experts-exchange.com/Programming/Misc/Q_21667347.html
Zones:
ProgrammingDate Answered: 12/22/2005 Rating: 7.2 Views: 0