필터 지우기
필터 지우기

Hi, If the numbers 1 to 5 are written out in words: one, two, three, four, five, then there are 3 + 3 + 5 + 4 + 4 = 19 letters used in total. Write a function called number2letters that returns the number of letters needed to write down the number

조회 수: 9 (최근 30일)
Hi, Really no idea how to start this question. PLease help.

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2018년 7월 30일
편집: KALYAN ACHARJYA 2018년 7월 30일
You can do that by using this custom function
Here Answer:
n=input('Enter the number: ');
words_number=num2words(n);
disp(words_number);
str=upper(words_number(:));
AZ='A':'Z';
count=sum(ismember(str,AZ));
fprintf('The numbers of letter: %d',count);
%Make the function yourself, I hope now you can do that. Got the idea from here
  댓글 수: 6

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

추가 답변 (1개)

Kavitha Komgari
Kavitha Komgari 2018년 8월 2일
Hi, i have solved by writing first num2words and get a string. Then convert it to number of letters. Thank you for your answers.

카테고리

Help CenterFile Exchange에서 Elementary Math에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by