Answer & Explanation:
//written in java
public class Main {
public static void main(String[] args) {
//declare a char variable for a, b, c
char a;
char b;
char c;
//assign a b and c
//a b and c can be replaced for with
// '#', '$', '%', then with '1', '2', '3'
// for further testing
a = 'x';
b = 'y';
c = 'z';
//output for all possible combination for a, b, c.
System.out.println("" + a + b + c + " " + a + c + b + " " + b + a + c +
" " + b + c + a + " " + c + a + b + " " + c + b + a);
}
}