Modify the areaMenu script to use the listdlg function instead of printing a menu. By using switch statement and adding two more option

2 views (last 30 days)
Modify the areaMenu script to use the listdlg function instead of printing a menu.
areaMenu.m
This is the version that I modified by using the listing funciton.;
How can I solve this question by using switch statement and how I include 2 additional options 4.trapezoid 5. Sector
________________________________________________________________________________
% Prints a menu and calculates area of user's choice
sh = listdlg('SelectionMode', 'Single',...
'PromptString', 'Menu',...
'ListString', {'Cylinder', 'Circle', 'Rectangle'});
if sh == 1
rad = input('Enter the radius of the cylinder: ');
ht = input('Enter the height of the cylinder: ');
fprintf('The surface area is %.2f\n', 2*pi*rad*ht)
elseif sh == 2
rad = input('Enter the radius of the circle: ');
fprintf('The area is %.2f\n', pi*rad*rad)
elseif sh == 3
len = input('Enter the length: ');
wid = input('Enter the width: ');
fprintf('The area is %.2f\n', len*wid)
else
disp('Error! Not a valid choice.')
end
  3 Comments

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 24 Dec 2021
if variable == value1
code1
elseif variable == value2
code2
else
error message
end
can be replaced by
switch variable
value1: code1
value2: code2
otherwise: error message
end

Categories

Find more on Interactive Control and Callbacks 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!