Clear Filters
Clear Filters

How do i change the input to make it any word I type in?

1 view (last 30 days)
In this program I am supposed to take a character array s as input and return a new character array with each letter shifted forward once in the alphabet (Assuming that the input s will never contain the letter 'z'.)
So far here's my code:
function S = shiftletters('apple')
S=char('a':'z'+1);

Accepted Answer

Walter Roberson
Walter Roberson on 30 Mar 2016
In a function line, you need to name a variable that will receive the passed value, such as
function S = shiftletters(TheInputWord)
Then inside the function your code should act upon the contents of that variable name (such as TheInputWord). For example to reverse the input you could use
fliplr(TheInputWord)

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!