Mandol C.

asked • 02/01/19

C++ changing the char of Vector <string>

void encodeUpper (vector <string> &book, int &cipher){
string word;
char asciiNum;
for(int i=0;i<book.size();i++){
if (IsUpper(book[i][i]) == true){
if (book[i][i] != ' ' ) {
asciiNum = (book[i][i]+cipher) % 91 ;
if (asciiNum<cipher){
book[i][i]+=65;
word = book[i];
}
}
}
}
}

//I'm trying to change the char of vector <string> please help

1 Expert Answer

By:

Patrick B. answered • 07/23/20

Tutor
4.7 (31)

Math and computer tutor/teacher

Still looking for help? Get the right answer, fast.

Ask a question for free

Get a free answer to a quick problem.
Most questions answered within 4 hours.

OR

Find an Online Tutor Now

Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.