What is the syntax error in this?
Show older comments
% This program calculates the amount of pasta to cook, given the number of people eating.
Author: Ettore Boyardee
numPeople = 2 // numPeople: Number of people that will be eating
totalOuncesPasta = numPeople * 3; % Calculate and print total ounces of pasta
Typical: 3 ounces per person %
3 Comments
Walter Roberson
on 13 Aug 2023
There are circumstances under which none of those answers are correct.
Accepted Answer
More Answers (1)
Jilesh Dilipbhai
on 26 Jan 2023
0 votes
% This program calculates the amount of pasta to cook, given the number of people eating.
% Author: Ettore Boyardee
numPeople = 2; % numPeople: Number of people that will be eating
totalOuncesPasta = numPeople * 3; % Calculate and print total ounces of pasta
% Typical: 3 ounces per person %
1 Comment
Walter Roberson
on 26 Jan 2023
How does this differ from the response from James https://www.mathworks.com/matlabcentral/answers/356869-what-is-the-syntax-error-in-this#answer_281724
Categories
Find more on Environmental Engineering 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!