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