#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[4]={1,2,3,4},x,y,z;
for(x=0;x<4;x++)
for(y=0;y<4;y++)
for(z=0;z<4;z++)
{if(x==y||x==z||y==z)
continue;
cout<<a[x]<<a[y]<<a[z]<<endl;
}
system("pause");
}
----------
如果是字符,就定义char。。。