fork download
  1. # include <stdio.h>
  2.  
  3. int fuzzyStrcmp(char s[], char t[]){
  4. //関数の中だけを書き換えてください
  5.  
  6. for(int x=0;s[x]!='\0';x++)
  7. if('a'<=s[x]&&s[x]<='z'){
  8. s[x]=s[x]-32;
  9. }
  10. for(int y=0;t[y]!='\0';y++)
  11. if('a'<=t[y]&&t[y]<='z'){
  12. t[y]=t[y]-32;
  13. }
  14.  
  15. for(int i=0;s[i]==t[i];i++)
  16. {
  17. if(s[i]=='\0') return 1;
  18. }
  19.  
  20. return 0;
  21. //同じとき1を返す,異なるとき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. }
Success #stdin #stdout 0.01s 5272KB
stdin
abc
ABC
stdout
abc = ABC -> 1