how to write a code using while end loop for display of number from 10 to 1 descending order ?
Show older comments
Accepted Answer
More Answers (1)
Hrusheekesh
on 11 Jul 2022
n=11;
while n>1
n=n-1
end
Categories
Find more on Loops and Conditional Statements 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!