Clear Filters
Clear Filters

How would i write this str?

1 view (last 30 days)
Maria
Maria on 6 Dec 2023
Commented: Dyuman Joshi on 6 Dec 2023
how would i format this,
MyAge = 6
FreindName = 'Joe'
FreindAge = 4
disp(['My',' friend',"'",'s', ' age is', FreindAge, ' years.'])
im trying to get it to display 'My freind's age is (veriable) years'

Answers (1)

Image Analyst
Image Analyst on 6 Dec 2023
I always use fprintf
MyAge = 6;
FreindName = 'Joe';
FreindAge = 4;
fprintf("My friend %s's age is %d years.\n", FreindName, FreindAge)
My friend Joe's age is 4 years.

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!