fork download
  1. # include <stdio.h>
  2.  
  3. int fuzzyStrcmp(char s[], char t[]){
  4. int i,j;
  5. for(i=0;s[i]!='\0';i++){
  6. if('a'<=s[i]&&s[i]<='z'){
  7. s[i]-=32;
  8. }
  9. if('a'<=t[i]&&t[i]<='z'){
  10. t[i]-=32;
  11. }
  12. if(s[i]!=t[i]){
  13. return 0;
  14. }
  15. }
  16. return 1;
  17. //for(j=0;s[j]=t[j];j++){
  18. // if((t[j]=='\0')&&(s[j]=='\0')){
  19. // return 1;
  20. // }
  21. //}
  22. //このfor文じゃできなかった
  23. //同じとき1を返す,異なるとき0を返す
  24. }
  25.  
  26. int main(){
  27. int ans;
  28. char s[100];
  29. char t[100];
  30. scanf("%s %s",s,t);
  31. printf("%s = %s -> ",s,t);
  32. ans = fuzzyStrcmp(s,t);
  33. printf("%d\n",ans);
  34. return 0;
  35. }
  36.  
Success #stdin #stdout 0s 5280KB
stdin
abCD AbCd
stdout
abCD = AbCd -> 1