fork download
  1. # include <stdio.h>
  2.  
  3. int fuzzyStrcmp(char s[], char t[]){
  4. int i;
  5. for(i=0;s[i]!='\0'&&t[i]!='\0';i++)
  6. {
  7. char a=s[i], b=t[i];
  8. if(a>='A'&&a<='Z') a=a-'A'+'a';
  9. if(b>='A'&&b<='Z') b=b-'A'+'a';
  10. if(a!=b) return 0;
  11. }
  12. if(s[i]!='\0'||t[i]!='\0') return 0;
  13. return 1;
  14. }
  15.  
  16. //メイン関数は書き換えなくてできます
  17. int main(){
  18. int ans;
  19. char s[100];
  20. char t[100];
  21. scanf("%s %s",s,t);
  22. printf("%s = %s -> ",s,t);
  23. ans = fuzzyStrcmp(s,t);
  24. printf("%d\n",ans);
  25. return 0;
  26. }
  27.  
Success #stdin #stdout 0s 5328KB
stdin
abCD AbCd
stdout
abCD = AbCd -> 1