题解 | #提取不重复的整数#
提取不重复的整数
http://www.nowcoder.com/practice/253986e66d114d378ae8de2e6c4577c1
#include<stdio.h>
#define MAXROOM 100
int main(void) {
int n;
char result[100] = "";
int i;
int j =0;
scanf("%d", &n);
while(n != 0) {
i = n%10;//取余后得到的是末位数字
//判断末位数字是否在数组中
for(j = 0; j < strlen(result) && i+'0' != result[j]; j++) {
;
}
//末位数字不在数组中时,将数字加入到数组中
if(j == strlen(result)) {
result[j] = i+'0';
}
n/=10;
}
printf("%s", result);
return 0;
}