fork download
  1. # include <stdio.h>
  2.  
  3. int fuzzyStrcmp(char s[], char t[]){
  4. int i=0;
  5. while(s[i]!='\0' && t[i]!='\0') {
  6. //s[i]が小文字のとき大文字にする
  7. if(s[i]>='a' && s[i]<='z') {
  8. s[i] = s[i]-('a'-'A');
  9. }
  10. //t[i]が小文字のとき大文字にする
  11. if(t[i]>='a' && t[i]<='z') {
  12. t[i] = t[i]-('a'-'A');
  13. }
  14. if(s[i]!=t[i]) {
  15. return 0;
  16. }
  17.  
  18. i++;
  19. }
  20. if(s[i]=='\0' && t[i]=='\0') return 1;
  21. else return 0;
  22. }
  23.  
  24. //メイン関数は書き換えなくてできます
  25. int main(){
  26. int ans;
  27. char s[100];
  28. char t[100];
  29. scanf("%s %s",s,t);
  30. printf("%s = %s -> ",s,t);
  31. ans = fuzzyStrcmp(s,t);
  32. printf("%d\n",ans);
  33. return 0;
  34. }
  35.  
Success #stdin #stdout 0s 5276KB
stdin
abCD 
AbCd
stdout
abCD = AbCd -> 1