fork download
  1. # include <stdio.h>
  2.  
  3. int fuzzyStrcmp(char s[], char t[]){
  4. //関数の中だけを書き換えてください
  5. //同じとき1を返す,異なるとき0を返す
  6. int i;
  7. while(s[i]!='\0'){
  8. if(s[i]==t[i]||s[i]+32==t[i]||s[i]-32==t[i]) return 1;
  9. return 0;
  10. }
  11. }
  12.  
  13. //メイン関数は書き換えなくてできます
  14. int main(){
  15. int ans;
  16. char s[100];
  17. char t[100];
  18. scanf("%s %s",s,t);
  19. printf("%s = %s -> ",s,t);
  20. ans = fuzzyStrcmp(s,t);
  21. printf("%d\n",ans);
  22. return 0;
  23. }
Success #stdin #stdout 0.01s 5280KB
stdin
abCD AbCd
stdout
abCD = AbCd -> 1