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