How can I write a program to make someone input a 6 digit number and show a result of the summation of the 6 digits?

조회 수: 10 (최근 30일)
Anybody know the functions I need?

채택된 답변

Stephen23
Stephen23 2014년 12월 17일
Try this:
sum(input('Enter a six digit number:','s')-'0')

추가 답변 (2개)

Sudharsana Iyengar
Sudharsana Iyengar 2014년 12월 17일
you can try this simple program by using fix. This writes a six digit number as sum of ones hundreds thousands etc.
This code can be made better by using recursion.
Here is the Program
n = input('Enter a six digit number:');
z=fix(n/100000);
y=fix(n-z*100000);
w=fix(y/10000);
y2=fix(y-w*10000);
w2=fix(y2/1000);
y3=fix(y2-w2*1000);
w3=fix(y3/100);
y4=fix(y3-w3*100);
w4=fix(y4/10);
y5=fix(y4-w4*10);
w5=fix(y5);
z*100000
w*10000
w2*1000
w3*100
w4*10
w5*1
z,w,w2,w3,w4,and w5 store the values you can save them in an array or use it for any other manipulation.

Thorsten
Thorsten 2014년 12월 17일
편집: Thorsten 2014년 12월 17일
Convert the number to a string, and then convert each character of the string to the corresponding value (using arrayfun to work on each element of the string), and sum the resulting values:
num = 123456; % sample number
sumofdigits = sum(arrayfun(@(x) double(x)- double('0'), int2str(num)));
  댓글 수: 3
Thorsten
Thorsten 2014년 12월 19일
편집: Thorsten 2014년 12월 19일
Dear Sudharsana,
The idea to convert the number to a string. In a string, each digit has a numerical value depending on the encoding, usually ASCII. For example, the string '123456' is represented as [49 50 51 52 53 54]. The nice thing in Matlab is that you can treat this string just as an array of numbers. If you now subtract the value of the character '0', namely 48, from your array, you get an array of numbers [ 1 2 3 4 5 6]. Use sum to sum all values, et Voilá! Please note that Steven and Andrei proposed shorter and more elegant ways to do this.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by