Si të gjejmë probabilitetin
#include <stdio.h>
main()
{
int i;
double p=1,a=1,b=1,c=1;
clrscr();
for (i=1; i<=49; i++)
{
a=a*i;
}
for (i=1; i<=43; i++)
{
b=b*i;
}
for (i=1; i<=6; i++)
{
c=c*i;
}
p=(100./ (a/(b*c)));
printf(“Probabiliteti eshte nje ne %0.25f%”,p);
getch();
return (0);
}
[cite]