#include<stdio.h> #include"math.h" #include"stdlib.h" int main() { char str[102]; int count=0,result[10],j=0; while(1) { count++; if(count==10) break; gets(str); if(atoi(str)!=0&&atoi(str)>=10&&atoi(str)<=pow(10,100)) { int temp,i=0; for(;str[i]!='\0';i++) ; temp=str[i-1]-'0'; if((atoi(str)/10-temp*5)%17==0) result[j++]=1; else result[j++]=0; } else break; } int k=0; for(;k<j;k++) printf("%d\n",result[k]); return 0; }
0.0分
0 人评分