1123: C++语言考试练习题_排列
          Memory Limit:128 MB
          Time Limit:1.000 S
         
      
      
        
          Judge Style:Text Compare
          Creator:
      
      
          Submit:8
          Solved:6
      
Description
有4个互不相同的数字,输出由其中三个不重复数字组成的排列。 
 
    Input
4个整数。 
      Output
	所有排列。 Sample Input Copy
1 2 3 4
Sample Output Copy
1 2 3
1 3 2
2 1 3
2 3 1
3 1 2
3 2 1
1 2 4
1 4 2
2 1 4
2 4 1
4 1 2
4 2 1
1 3 4
1 4 3
3 1 4
3 4 1
4 1 3
4 3 1
2 3 4
2 4 3
3 2 4
3 4 2
4 2 3
4 3 2