Effacer les filtres
Effacer les filtres

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 vues (au cours des 30 derniers jours)
Hi, Really no idea how to start this question. PLease help.

Réponse acceptée

KALYAN ACHARJYA
KALYAN ACHARJYA le 30 Juil 2018
Modifié(e) : KALYAN ACHARJYA le 30 Juil 2018
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 commentaires

Connectez-vous pour commenter.

Plus de réponses (1)

Kavitha Komgari
Kavitha Komgari le 2 Août 2018
Hi, i have solved by writing first num2words and get a string. Then convert it to number of letters. Thank you for your answers.

Catégories

En savoir plus sur Elementary Math dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by