% 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

Aqila
Aqila le 13 Août 2023
Modifié(e) : Torsten le 13 Août 2023
the symtax 5p^3 give an error in matlab please select the option that is correct for this error
1). 5*.p^3
2). 5*p^3
3). 5p.^3
4). 5multiply p^3
Walter Roberson
Walter Roberson le 13 Août 2023
There are circumstances under which none of those answers are correct.

Connectez-vous pour commenter.

 Réponse acceptée

James Tursa
James Tursa le 15 Sep 2017
Modifié(e) : James Tursa le 15 Sep 2017
Each comment section on a line needs to start with the % character.
The C/C++ style of commenting with // does not work with MATLAB. Use the % character.
E.g.,
% 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
Walter Roberson le 15 Sep 2017
Octave permits // comments. If you are using Octave then this is not the proper support resource: the behaviour of Octave is not always the same as MATLAB.

Connectez-vous pour commenter.

Plus de réponses (1)

Jilesh Dilipbhai
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 %

Catégories

Community Treasure Hunt

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

Start Hunting!

Translated by