+ 1
Please can i get an example of a java program written using permutation... I just heard of permutation but got no idea wat it is
goody
3 Answers
+ 3
learn permutation and combination in maths course and then try to make program for it
+ 1
Permutation is a fancy word for switching places. If you have people seated on a table, you can rearrange them. That's a permutation.
- 2
int a = 20;
int b = 30;
a = b;
System.out.println(a);
/*output 30*/