Convert the input number from base 10 into base 5:
for example:
if a(in base 10)= 5
then a(in base 5)= 10
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers282
Suggested Problems
-
Project Euler: Problem 3, Largest prime factor
1810 Solvers
-
Arrange Vector in descending order
13726 Solvers
-
Flag largest magnitude swings as they occur
692 Solvers
-
Test if two numbers have the same digits
266 Solvers
-
Replace multiples of 5 with NaN
470 Solvers
More from this Author11
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
It's a dirty way to handle this to put base 5 numbers into the form of a base 10 number. You really should be using a string representation for the number in another base, just as dec2base does.