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