Finding Digits of a Number

10 ビュー (過去 30 日間)
ceren uçak
ceren uçak 2021 年 6 月 1 日
コメント済み: James Tursa 2021 年 6 月 1 日
Given any number, find all the digits of the
number;
For example: 456
-
Digits are 4, 5, 6
WITH LOOPS

回答 (1 件)

Asmit Singh
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
ceren uçak 2021 年 6 月 1 日
Thank you very much for answering the question.
James Tursa
James Tursa 2021 年 6 月 1 日
@Asmit Singh Please do not post complete answers to homework questions.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeIntroduction to Installation and Licensing についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by