I fundamentally agree with you about his english skills. Really....
I will explain later...
William Hemsworth commented: "Please help!!!!!!!!!!!!!!!!!!!!!!!!!!!!", Grow Up!!!!!!!!!!!!!!!!!!!!!!!!!!!! -1
Ezzaral commented: Fail. -3
I fundamentally agree with you about his english skills. Really....
I will explain later...
if I was able to write this program I did not want help from people.
secondly I had made lots of attempt myself but I had failed and I have only 27 hours to complete this program... thaks for your advice..
subset is a mathematical term for example if you have a set contains 3 elements x:{a, b, c, }
so
{a} is a subset of X with 1 elements
{b} is subset of x with 1 elements
{c} is a subset of x with 1 elements
{a,b} is asubset of x with 2 element
{a,c} is a subset of x with 2 elements
{b,c} is a subset of x with 3 elements like this...
I want to write a program that list the subsets specificly .
thank you very much..
I need help about a question FOLLOWİNG (please use the c++)
Question is:
1-) You are given a set witl 10 elements.
X: { 23, 13, 25, 43, 45, 26, 10, 2, 27, 44 }
or you can choose any 10 elementsç it is not problem.
2-) You are asked to write a program which can generate subsets of X with specific number of elements.
your program's output should be like this:
X = { 23, 13, 25, 43, 45, 26, 10, 2, 27, 44 }
Enter the number of elements for subset generation : 9 (for example you entered 9 )
SUBSETS WITH 9 ELEMENTS
-----------------------------------
23 13 25 43 45 26 10 2 27
23 13 25 43 45 26 10 2 44
23 13 25 43 45 26 10 27 44
23 13 25 43 45 26 2 27 44
23 13 25 43 45 10 2 27 44
"
"
"