Advertisement

1 - 10 of 196 containing alltags:("factory") (0.001 seconds)
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,...
Zones: Visual BasicDate Answered: 08/11/2002 Grade: A 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...
Zones: C++Date Answered: 04/01/2002 Grade: A 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..
Zones: JavaScriptDate Answered: 02/27/2003 Grade: A 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...
Zones: JavaDate Answered: 06/30/2003 Grade: A 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: [...
Zones: Math & ScienceDate Answered: 07/15/2003 Grade: A Views: 5
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...
Zones: C++Date Answered: 01/21/2005 Grade: A 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...
Zones: Java, EJB, JNDIDate Answered: 02/08/2005 Grade: B 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...
Zones: C++Date Answered: 10/12/2005 Grade: A Views: 0
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...
Zones: C#Date Answered: 01/03/2006 Grade: A 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...
Zones: ProgrammingDate Answered: 12/22/2005 Grade: A Views: 15