Simple question regarding feld width in matlab

If saw a question in the internet which asks to write a segment code that prompt the user for a charcter and will print it twice; once left-justified in a field width of 5, and again right-justified in a field width of 3:
Here is my working:
ask=input('Enter a charcter: ','s');
fprintf('First time: %c\n',ask);
fprintf('First time:%c \n',ask);

3 Comments

Stephen23
Stephen23 on 23 Jun 2018
Edited: Stephen23 on 23 Jun 2018
@ Sultan Al-Hammadi: your code does not make any attempt to change the fieldwidth or at justification. How to justify and change the fieldwidth is explained in the fprintf help.
What is your question for us?
ask=input('Enter a charcter: ','s');
fprintf('First time:%5c\n',ask);
fprintf('Second time:%0.3c\n',ask);
I think that the first one is correct but the second fprintf is not.
Neither one are correct. Your first one does not left justify and the right one does not print the character.

Sign in to comment.

Answers (1)

Categories

Asked:

on 23 Jun 2018

Edited:

on 23 Jun 2018

Community Treasure Hunt

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

Start Hunting!