What is the syntax error in this?
Afficher commentaires plus anciens
% 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 commentaires
Walter Roberson
le 13 Août 2023
There are circumstances under which none of those answers are correct.
Réponse acceptée
Plus de réponses (1)
Jilesh Dilipbhai
le 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 commentaire
Walter Roberson
le 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
Catégories
En savoir plus sur Environmental Engineering dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!