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