how to write a program combininb name and age?
Show older comments
In my HB I got an assigment on writing a program that asks for the name and age of a person, then runs the sentence Dear__your age is___, the blank spaces containing the input
I thought about using a switch, the cases being the name inputs, is that something I can do or is there an easier way?
Answers (1)
Fangjun Jiang
on 13 Aug 2024
Moved: Fangjun Jiang
on 13 Aug 2024
No Switch statement is needed. This practice is to get the input and put it in the right format.
help input
help sprintf
1 Comment
Steven Lord
on 13 Aug 2024
Another approach could be to build up a string that includes your data. This documentation page shows two ways to do that.
Categories
Find more on Characters and Strings in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!