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