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