What is the syntax error in this?

% 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 个评论

Aqila
Aqila 2023-8-13
编辑:Torsten 2023-8-13
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
There are circumstances under which none of those answers are correct.

请先登录,再进行评论。

 采纳的回答

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 个评论

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.

请先登录,再进行评论。

更多回答(1 个)

Jilesh Dilipbhai
Jilesh Dilipbhai 2023-1-26
% 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 %

类别

帮助中心File Exchange 中查找有关 Environmental Engineering 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by