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