How to display units with my answer?

48 views (last 30 days)
prompt = 'Enter mass in pounds:';
x = input(prompt);
y = x*0.4536;
disp (y);
This is my current script and i want to have the answer display with 'kg' next to the answer and i cant figure out how to do it.

Accepted Answer

Elysi Cochin
Elysi Cochin on 22 Mar 2020
Edited: Elysi Cochin on 22 Mar 2020
fprintf('%g kg\n', y)

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!