Problem 2392. Find the coefficient of a number in scientifc notation

Given a non-negative real number N, find the coefficient C and the exponent E of its scientific notation (N = C 10^E). Note that 0 <= C < 10

Examples:

Input  N = 1024
Output C = 1.024
       E = 3
Input  N = 0.0589
Output C = 5.89
       E = -2

Solution Stats

75.0% Correct | 25.0% Incorrect
Last Solution submitted on Oct 24, 2022

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers39

Suggested Problems

More from this Author1

Problem Tags

Community Treasure Hunt

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

Start Hunting!