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