fork download
  1. # include <stdio.h>
  2.  
  3. int fuzzyStrcmp(char s[], char t[]){
  4. //関数の中だけを書き換えてください
  5. //同じとき1を返す,異なるとき0を返す
  6. int i = 0;
  7. while (s[i] != '\0' && t[i] != '\0') {
  8. char char_s = s[i];
  9. char char_t = t[i];
  10. if (char_s >= 'A' && char_s <= 'Z') {
  11. char_s = char_s + 32;
  12. }
  13. if (char_t >= 'A' && char_t <= 'Z') {
  14. char_t = char_t + 32;
  15. }
  16. if (char_s != char_t) {
  17. return 0;
  18. }
  19. i++;
  20. }
  21. if (s[i] == '\0' && t[i] == '\0') {
  22. return 1;
  23. } else {
  24. return 0;
  25. }
  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 5272KB
stdin
abCD AbCe
stdout
abCD = AbCe -> 0