fork(1) download
  1. # include <stdio.h>
  2.  
  3. int fuzzyStrcmp(char s[], char t[]){
  4. for(int i = 0;s[i]==t[i];i++){
  5. if(s[i]=='\n') return 1;
  6. }
  7. return 0;
  8. }
  9.  
  10. //メイン関数は書き換えなくてできます
  11. int main(){
  12. int ans;
  13. char s[100];
  14. char t[100];
  15. scanf("%s %s",s,t);
  16. printf("%s = %s -> ",s,t);
  17. ans = fuzzyStrcmp(s,t);
  18. printf("%d\n",ans);
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0s 5284KB
stdin
abCD AbCd
stdout
abCD = AbCd -> 0