#Day31 #100DaysChallenge- Matlab Loops| Printing Alphabet 'O'
#Day31-Printing Alphabet 'O'
Task:
Task:
Print alphabet 'O' as shown below by taking user input for the number of lines or rows
* * * * *
* *
* *
* *
* *
* *
* *
* *
* *
* * * * *
Note: This code can be done using the in-built command. But for the challenge, I am trying to avoid those
Matlab code
* * * * *
* *
* *
* *
* *
* *
* *
* *
* *
* * * * *
Note: This code can be done using the in-built command. But for the challenge, I am trying to avoid those
Matlab code
function printingalphao(x)
for i=1:1:x
if i==1||i==x
for j=1:1:floor(x/2)
fprintf('\t');
fprintf('*');
end
else
fprintf('*');
for j=1:1:floor(x/2)+1
fprintf('\t');
end
fprintf('*');
end
fprintf('\n');
end
end
Sample Input and Output
>> printingalphao(7)
* * *
* *
* *
* *
* *
* *
* * *
>> printingalphao(10)
* * * * *
* *
* *
* *
* *
* *
* *
* *
* *
* * * * *
Click here for video description
Free Codes: youtube.com/castorclasses
No comments