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