Problem 1274. Accurate Division

Given three integers x, y and d, return x/y (as a string) to d significant digits. Remove leading and trailing zeros.

Example:

x = 11; y = 7; d = 10;

z = adiv(x,y,d)

z=

1.571428571

Solution Stats

18.09% Correct | 81.91% Incorrect
Last Solution submitted on Feb 15, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers32

Problem Tags

Community Treasure Hunt

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

Start Hunting!