用c编的:
#include<stdio.h>
#include<string.h>
#define max 100
int main()
{
int i = 0,n,m = 0;
char s[max];
char t[max];
printf("ÇëÊäÈë×Ö·û´®:");
gets(s);
n = strlen(s);
while(i < n)
{
t[m] = s[i];
for(int j = 0; j < m; j++)
if(t[j] == t[m])
{m--; break;}
i++;
m++;
}
for(int k = 0; k < m; k++)
printf("%c",t[k]);
printf("\n");
return 0;
}