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. if (tolower(s[i]) != tolower(t[i])) {
  9. return 0; // 1文字でも違えば0を返す
  10. }
  11. i++;
  12. }
  13. // 両方の文字列が同時に終われば一致(=1)、長さが違えば不一致(=0)
  14. if (s[i] == '\0' && t[i] == '\0')
  15. return 1;
  16. else
  17. return 0;
  18. }
  19.  
  20. //メイン関数は書き換えなくてできます
  21. int main(){
  22. int ans;
  23. char s[100];
  24. char t[100];
  25. scanf("%s %s",s,t);
  26. printf("%s = %s -> ",s,t);
  27. ans = fuzzyStrcmp(s,t);
  28. printf("%d\n",ans);
  29. return 0;
  30. }
  31.  
Success #stdin #stdout 0.01s 5276KB
stdin
abCD AbCd
stdout
abCD = AbCd -> 1