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