Finding Digits of a Number
이전 댓글 표시
Given any number, find all the digits of the
number;
For example: 456
-
Digits are 4, 5, 6
WITH LOOPS
답변 (1개)
Asmit Singh
2021년 6월 1일
This code basically keeps dividing the number by 10, and uses the remainder as the digit, while the quotient as the new number.
number = 456;
digits = [];
while(number~=0)
remain = rem(number,10);
number = fix(number/10);
digits=[digits remain];
end
digits = fliplr(digits)
댓글 수: 2
ceren uçak
2021년 6월 1일
James Tursa
2021년 6월 1일
@Asmit Singh Please do not post complete answers to homework questions.
카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!