fork download
  1. # include <stdio.h>
  2. # include <ctype.h>
  3.  
  4. int fuzzyStrcmp(char s[], char t[]){
  5. //関数の中だけを書き換えてください
  6. //同じとき1を返す,異なるとき0を返す
  7. int i = 0;
  8. while (s[i] != '\0' && t[i] != '\0') {
  9. // 小文字に変換して比較
  10. if (tolower(s[i]) != tolower(t[i])) {
  11. return 0; // 異なる文字があれば 0 を返す
  12. }
  13. i++;
  14. }
  15. // 文字列の長さが同じであれば 1、それ以外は 0
  16. return (s[i] == '\0' && t[i] == '\0') ? 1 : 0;
  17.  
  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 0s 5284KB
stdin
abCD AbCe
stdout
abCD = AbCe -> 0