Блог пользователя seven_triple

Автор seven_triple, история, 6 лет назад, По-английски

I want to replace all the ? in range l to r with 'A' 1. first i am using function but it not working means not replacing the ? 2. second i am using for loop instead the function inside the main function and it is working correct .I am not able to understand why this happen.

all the suitable information are given in below code using comments.

Thanks.

Your text to link here...

  • Проголосовать: нравится
  • 0
  • Проголосовать: не нравится

»
6 лет назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

Replace

 if(s[i]=='?') s[i]=='A'

with

 if(s[i]=='?') s[i]='A'

in function