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

2 Ansichten (letzte 30 Tage)
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 Kommentare
Ceren Akcam
Ceren Akcam am 24 Dez. 2021
Bearbeitet: Ceren Akcam am 24 Dez. 2021
Sorry, I thought that I added the script. I updated my question.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Walter Roberson
Walter Roberson am 24 Dez. 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

Kategorien

Mehr zu Interactive Control and Callbacks finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by