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
3 ビュー (過去 30 日間)
古いコメントを表示
Hi, Really no idea how to start this question. PLease help.
0 件のコメント
採用された回答
KALYAN ACHARJYA
2018 年 7 月 30 日
編集済み: KALYAN ACHARJYA
2018 年 7 月 30 日
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);
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!