Please write a program to show all subsets of set of first n number given by user | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Please write a program to show all subsets of set of first n number given by user

2nd Nov 2016, 3:07 PM
Vipin Kumar
Vipin Kumar - avatar
2 Answers
+ 2
Here is the program:- #include <iostream> using namespace std; int main() { int i; int j; int x; int a[4]={1,2,3,4}; /*The below loop prints the subsets having one term*/ for (i = 0; i<=3; i++) { cout << a[i] <<"\n"; } /*The below loop prints the subsets having 2 terms*/ for (i = 0; i<=3; i++) { for (j=i+1; j<=3; j++) { cout << a[i] << ", "<<a[j] <<"\n"; } } /* The below loop prints the subsets having 3 terms */ for (i=0; i<=1; i++) { for (j=i+2; j<=3;j++) { cout<< a[i] << ", " << a[i+1]<< ", " << a[j]<<endl; if((j==3) &&((i+2)!=3)) { for(x=i+2;x!=3; x++) { cout<< a[i] << ", " << a[x]<< ", " << a[j]<<endl; } } } } /*This below code lines print the subset having 4 terms*/ cout<< "1, 2, 3, 4"<<endl; return (0); }
2nd Nov 2016, 6:50 PM
Ashutosh Tripathy
Ashutosh Tripathy - avatar
+ 1
I'll try to solve this problem. I think you can solve with recursive function.
2nd Nov 2016, 3:58 PM
Badila Timotei
Badila Timotei - avatar