Question: Write a program to print all of the permutations of the values 1, 2, 3, ..., n
Your program should be written as a class named Permutations, in a file named Permutations.java.
Your program takes one argument from the command line, which as an integer n that is the number of elements.
Your program produces as output the (1-based) indices of the elements in the permutation.
Make sure the submitted .java file compiles without warnings and runs as:
$ javac Permutations.java
$ java Permutations 3
1 2 3
1 3 2
2 1 3
2 3 1
3 1 2
3 2 1
Make this program using java programming. Make this program in simple way.