fork download
  1. # include <stdio.h>
  2.  
  3. int fuzzyStrcmp(char s[], char t[])
  4. {
  5. int i = 0;
  6. while (s[i] != '\0' && t[i] != '\0')
  7. {
  8. char a = s[i];
  9. char b = t[i];
  10.  
  11. if (a >= 'A' && a <= 'Z')
  12. {
  13. a += 32;
  14. }
  15. if (b >= 'A' && b <= 'Z')
  16. {
  17. b += 32;
  18. }
  19.  
  20.  
  21. if (a != b)
  22. {
  23. return 0;
  24. }
  25. i++;
  26. }
  27.  
  28. if (s[i] != '\0' || t[i] != '\0')
  29. {
  30. return 0;
  31. }
  32.  
  33. return 1;
  34. }
  35.  
  36.  
  37. //メイン関数は書き換えなくてできます
  38. int main(){
  39. int ans;
  40. char s[100];
  41. char t[100];
  42. scanf("%s %s",s,t);
  43. printf("%s = %s -> ",s,t);
  44. ans = fuzzyStrcmp(s,t);
  45. printf("%d\n",ans);
  46. return 0;
  47. }
  48.  
Success #stdin #stdout 0s 5284KB
stdin
abCD AbCd
stdout
abCD = AbCd -> 1