hdoj1013 wa(待改正)

#include <stdio.h>
#include <stdlib.h>
int main(){
char a[100000];
int x,i;
while(EOF!=scanf("%s",a)&&a[0]!='0'){
x=10;
while(x>9){
for(i=0,x=0;a[i]!='\0';i++)
x+=a[i]-'0';
itoa(x,a,10);
}
printf("%d\n",x);
}
//system("pause");
return 0;
}

 

posted @ 2015-04-05 11:30  锄,禾日当午  阅读(105)  评论(0编辑  收藏  举报