fork download
  1. # include <stdio.h>
  2.  
  3. int fuzzyStrcmp(char s[], char t[]){
  4. int k=0;
  5. while(t[k]!='\0'){
  6. k++;
  7. }
  8. if(s[k]!='\0'){
  9. return 0;
  10. }
  11. for(int i=0; i<k; i++){
  12. if(s[i]!=t[i]){
  13. if((s[i]-t[i])||(t[i]-s[i])==32){
  14. break;
  15. }
  16. else{
  17. return 0;
  18. }
  19. }
  20. }
  21. return 1;
  22. //関数の中だけを書き換えてください
  23. //同じとき1を返す,異なるとき0を返す
  24. }
  25.  
  26. //メイン関数は書き換えなくてできます
  27. int main(){
  28. int ans;
  29. char s[100];
  30. char t[100];
  31. scanf("%s %s",s,t);
  32. printf("%s = %s -> ",s,t);
  33. ans = fuzzyStrcmp(s,t);
  34. printf("%d\n",ans);
  35. return 0;
  36. }
  37.  
Success #stdin #stdout 0.01s 5284KB
stdin
abCD fgfs
stdout
abCD = fgfs -> 1