fix all errors in code below: PLEASE DO ASAP, THIS IS IN
MATLAB
%Welcome Message
fprintf('****Welcome to Comida Mexicana De Mentiras****\n');
flag =0;
while flag ==1
% Asking the user for the order
choice = input('Please enter your order \n 1. Burrito Bowl \n
2.Burrito \n 3. Tacos \n Enter 1 or 2 or 3: ','s'); switch
choice
case choice==1
% For Burrito Bowl
BaseCost = 4;
[Protein, PC] = proteinChoice();
[FinalAmount,~]= AmountCalculator(BaseCost,PC);
displayMessage("Burrito Bowl",Protein,FinalAmount);
case choice==2
end
end
%...