I need help please, how can I write a program to count the number of digits of an integer the user entered ?

5 views (last 30 days)
For example, I asked the user to input a number and he entered 5984, how can I write a program to count how many digits it has (which is 4)? Thank you.

Accepted Answer

madhan ravi
madhan ravi on 23 Sep 2020
Edited: madhan ravi on 23 Sep 2020
strlength(abs(5984) + "")

More Answers (1)

Ameer Hamza
Ameer Hamza on 23 Sep 2020
An alternative
n = floor(log10(5984)+1)

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!